diff options
Diffstat (limited to 'apps/plugins/rockboy/mem.h')
-rw-r--r-- | apps/plugins/rockboy/mem.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/apps/plugins/rockboy/mem.h b/apps/plugins/rockboy/mem.h index 36ea26e9f3..14d03d5ff5 100644 --- a/apps/plugins/rockboy/mem.h +++ b/apps/plugins/rockboy/mem.h @@ -1,4 +1,3 @@ - #ifndef __MEM_H__ #define __MEM_H__ @@ -48,10 +47,6 @@ extern struct mbc mbc; extern struct rom rom; extern struct ram ram; - - - - void mem_updatemap(void) ICODE_ATTR; void ioreg_write(byte r, byte b) ICODE_ATTR; void mbc_write(int a, byte b) ICODE_ATTR; @@ -60,7 +55,6 @@ byte mem_read(int a) ICODE_ATTR; void mbc_reset(void); - #define READB(a) ( mbc.rmap[(a)>>12] \ ? mbc.rmap[(a)>>12][(a)] \ : mem_read((a)) ) @@ -71,10 +65,4 @@ void mbc_reset(void); : ( mem_write((a), (b)), (b) ) ) #define WRITEW(a, w) ( WRITEB((a), (w)&0xFF), WRITEB((a)+1, (w)>>8) ) - - - #endif - - - |