diff options
Diffstat (limited to 'src/mame/drivers/lbeach.cpp')
-rw-r--r-- | src/mame/drivers/lbeach.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/lbeach.cpp b/src/mame/drivers/lbeach.cpp index 96cec48d265..ff7d5893bc9 100644 --- a/src/mame/drivers/lbeach.cpp +++ b/src/mame/drivers/lbeach.cpp @@ -234,12 +234,12 @@ void lbeach_state::lbeach_map(address_map &map) map(0x8000, 0x8000).writeonly().share("scroll_y"); map(0x8001, 0x8001).writeonly().share("sprite_x"); map(0x8002, 0x8002).writeonly().share("sprite_code"); -// AM_RANGE(0x8003, 0x8003) AM_WRITENOP // ? -// AM_RANGE(0x8004, 0x8004) AM_WRITENOP // ? -// AM_RANGE(0x8005, 0x8005) AM_WRITENOP // ? +// map(0x8003, 0x8003).nopw(); // ? +// map(0x8004, 0x8004).nopw(); // ? +// map(0x8005, 0x8005).nopw(); // ? map(0x8007, 0x8007).nopw(); // probably watchdog map(0xa000, 0xa000).portr("IN0"); -// AM_RANGE(0xa003, 0xa003) AM_READNOP // ? tests d7 at game over +// map(0xa003, 0xa003).nopr(); // ? tests d7 at game over map(0xc000, 0xcfff).rom(); map(0xf000, 0xffff).rom(); } |