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.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/apps/plugins/rockboy/fastmem.h b/apps/plugins/rockboy/fastmem.h
new file mode 100644
index 0000000000..7ab447fd2a
--- /dev/null
+++ b/apps/plugins/rockboy/fastmem.h
@@ -0,0 +1,22 @@
1
2#ifndef __FASTMEM_H__
3#define __FASTMEM_H__
4
5
6#include "defs.h"
7#include "mem.h"
8
9
10byte readb(int a);
11void writeb(int a, byte b);
12int readw(int a);
13void writew(int a, int w);
14byte readhi(int a);
15void writehi(int a, byte b);
16#if 0
17byte readhi(int a);
18void writehi(int a, byte b);
19#endif
20
21
22#endif