summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/decobsmt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/decobsmt.cpp')
-rw-r--r--src/mame/audio/decobsmt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/audio/decobsmt.cpp b/src/mame/audio/decobsmt.cpp
index 6c2f07d2456..fb4b2521f2c 100644
--- a/src/mame/audio/decobsmt.cpp
+++ b/src/mame/audio/decobsmt.cpp
@@ -16,7 +16,7 @@
#define M6809_TAG "soundcpu"
#define BSMT_TAG "bsmt"
-static ADDRESS_MAP_START( decobsmt_map, AS_PROGRAM, 8, decobsmt_device )
+ADDRESS_MAP_START(decobsmt_device::decobsmt_map)
AM_RANGE(0x0000, 0x1fff) AM_RAM
AM_RANGE(0x2000, 0xffff) AM_ROM AM_REGION(":soundcpu", 0x2000)
AM_RANGE(0x2000, 0x2001) AM_WRITE(bsmt_reset_w)
@@ -26,7 +26,7 @@ static ADDRESS_MAP_START( decobsmt_map, AS_PROGRAM, 8, decobsmt_device )
AM_RANGE(0xa000, 0xa0ff) AM_WRITE(bsmt1_w)
ADDRESS_MAP_END
-static ADDRESS_MAP_START( bsmt_map, 0, 8, decobsmt_device )
+ADDRESS_MAP_START(decobsmt_device::bsmt_map)
AM_RANGE(0x000000, 0xffffff) AM_ROM AM_REGION(":bsmt", 0)
ADDRESS_MAP_END