From 6952f03a7dfef2424164762ecd98fb128b7e44eb Mon Sep 17 00:00:00 2001 From: Karl Kurbjun Date: Mon, 19 Jun 2006 01:47:45 +0000 Subject: Update for Rockboy: - fix scaling for other color screens than H300 - full menu rewrite to display choices properly - some small tweaks to code - some formatting updates git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10137 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/rockboy/mem.h | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'apps/plugins/rockboy/mem.h') 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 - - - -- cgit v1.2.3