summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/mem.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/rockboy/mem.h')
-rw-r--r--apps/plugins/rockboy/mem.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/apps/plugins/rockboy/mem.h b/apps/plugins/rockboy/mem.h
index 14d03d5ff5..66165d1970 100644
--- a/apps/plugins/rockboy/mem.h
+++ b/apps/plugins/rockboy/mem.h
@@ -17,29 +17,29 @@
17 17
18struct mbc 18struct mbc
19{ 19{
20 int type; 20 int type;
21 int model; 21 int model;
22 int rombank; 22 int rombank;
23 int rambank; 23 int rambank;
24 int romsize; 24 int romsize;
25 int ramsize; 25 int ramsize;
26 int enableram; 26 int enableram;
27 int batt; 27 int batt;
28 byte *rmap[0x10], *wmap[0x10]; 28 byte *rmap[0x10], *wmap[0x10];
29}; 29};
30 30
31struct rom 31struct rom
32{ 32{
33 byte (*bank)[16384]; 33 byte (*bank)[16384];
34 char name[20]; 34 char name[20];
35}; 35};
36 36
37struct ram 37struct ram
38{ 38{
39 byte hi[256]; 39 byte hi[256];
40 byte ibank[8][4096]; 40 byte ibank[8][4096];
41 byte (*sbank)[8192]; 41 byte (*sbank)[8192];
42 int loaded; 42 int loaded;
43}; 43};
44 44
45 45