diff options
Diffstat (limited to 'src/mame/audio/wpcsnd.cpp')
-rw-r--r-- | src/mame/audio/wpcsnd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/audio/wpcsnd.cpp b/src/mame/audio/wpcsnd.cpp index 3564ef176e9..e487b46316f 100644 --- a/src/mame/audio/wpcsnd.cpp +++ b/src/mame/audio/wpcsnd.cpp @@ -29,7 +29,7 @@ wpcsnd_device::wpcsnd_device(const machine_config &mconfig, const char *tag, dev { } -static ADDRESS_MAP_START( wpcsnd_map, AS_PROGRAM, 8, wpcsnd_device ) +ADDRESS_MAP_START(wpcsnd_device::wpcsnd_map) AM_RANGE(0x0000, 0x1fff) AM_RAM AM_RANGE(0x2000, 0x2000) AM_MIRROR(0x03ff) AM_WRITE(rombank_w) AM_RANGE(0x2400, 0x2401) AM_MIRROR(0x03fe) AM_DEVREADWRITE("ym2151", ym2151_device, read, write) |