diff options
Diffstat (limited to 'src/mame/drivers/spcforce.cpp')
-rw-r--r-- | src/mame/drivers/spcforce.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/spcforce.cpp b/src/mame/drivers/spcforce.cpp index 54294b91e1a..c0587014201 100644 --- a/src/mame/drivers/spcforce.cpp +++ b/src/mame/drivers/spcforce.cpp @@ -124,7 +124,7 @@ WRITE_LINE_MEMBER(spcforce_state::unknown_w) // written very frequently } -static ADDRESS_MAP_START( spcforce_map, AS_PROGRAM, 8, spcforce_state ) +ADDRESS_MAP_START(spcforce_state::spcforce_map) AM_RANGE(0x0000, 0x3fff) AM_ROM AM_RANGE(0x4000, 0x43ff) AM_RAM AM_RANGE(0x7000, 0x7000) AM_READ_PORT("DSW") AM_DEVWRITE("soundlatch", generic_latch_8_device, write) @@ -136,7 +136,7 @@ static ADDRESS_MAP_START( spcforce_map, AS_PROGRAM, 8, spcforce_state ) AM_RANGE(0xa000, 0xa3ff) AM_RAM AM_SHARE("scrollram") ADDRESS_MAP_END -static ADDRESS_MAP_START( spcforce_sound_map, AS_PROGRAM, 8, spcforce_state ) +ADDRESS_MAP_START(spcforce_state::spcforce_sound_map) AM_RANGE(0x0000, 0x07ff) AM_ROM ADDRESS_MAP_END |