summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/nsg6809.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/nsg6809.cpp')
-rw-r--r--src/mame/drivers/nsg6809.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/nsg6809.cpp b/src/mame/drivers/nsg6809.cpp
index b5a740a3197..7cfc0700af6 100644
--- a/src/mame/drivers/nsg6809.cpp
+++ b/src/mame/drivers/nsg6809.cpp
@@ -50,10 +50,11 @@ public:
required_device<cpu_device> m_maincpu;
void pitchhit(machine_config &config);
+ void main_map(address_map &map);
};
-static ADDRESS_MAP_START( main_map, AS_PROGRAM, 8, nsg6809_state )
+ADDRESS_MAP_START(nsg6809_state::main_map)
AM_RANGE(0x0000, 0x1fff) AM_RAM
AM_RANGE(0x2800, 0x280f) AM_DEVREADWRITE("via", via6522_device, read, write)
AM_RANGE(0x3000, 0x3003) AM_DEVREADWRITE("acia", mos6551_device, read, write)