summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/fastmem.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/rockboy/fastmem.h')
-rw-r--r--apps/plugins/rockboy/fastmem.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/plugins/rockboy/fastmem.h b/apps/plugins/rockboy/fastmem.h
index 7ab447fd2a..e36eb2032a 100644
--- a/apps/plugins/rockboy/fastmem.h
+++ b/apps/plugins/rockboy/fastmem.h
@@ -7,12 +7,12 @@
7#include "mem.h" 7#include "mem.h"
8 8
9 9
10byte readb(int a); 10byte readb(int a) ICODE_ATTR;
11void writeb(int a, byte b); 11void writeb(int a, byte b) ICODE_ATTR;
12int readw(int a); 12int readw(int a) ICODE_ATTR;
13void writew(int a, int w); 13void writew(int a, int w) ICODE_ATTR;
14byte readhi(int a); 14byte readhi(int a) ICODE_ATTR;
15void writehi(int a, byte b); 15void writehi(int a, byte b) ICODE_ATTR;
16#if 0 16#if 0
17byte readhi(int a); 17byte readhi(int a);
18void writehi(int a, byte b); 18void writehi(int a, byte b);