mirror of
https://github.com/holub/mame
synced 2025-05-30 01:23:07 +03:00
fix compile
This commit is contained in:
parent
f3e65dd57f
commit
f36676e5d8
@ -126,7 +126,7 @@ static WRITE16_HANDLER( c7x_shared_w )
|
||||
}
|
||||
|
||||
ADDRESS_MAP_START( namcoc7x_mcu_map, AS_PROGRAM, 16 )
|
||||
AM_RANGE(0x002000, 0x002fff) AM_DEVREADWRITE("c352", c352_r, c352_w)
|
||||
AM_RANGE(0x002000, 0x002fff) AM_DEVREADWRITE_MODERN("c352", c352_device, read, write)
|
||||
AM_RANGE(0x004000, 0x00bfff) AM_RAM AM_BASE(&namcoc7x_mcuram)
|
||||
AM_RANGE(0x00c000, 0x00ffff) AM_ROM AM_REGION("c7x", 0x8c000)
|
||||
AM_RANGE(0x080000, 0x0fffff) AM_ROM AM_REGION("c7x", 0)
|
||||
@ -137,7 +137,7 @@ ADDRESS_MAP_START( namcoc7x_mcu_map, AS_PROGRAM, 16 )
|
||||
ADDRESS_MAP_END
|
||||
|
||||
ADDRESS_MAP_START( namcoc7x_mcu_share_map, AS_PROGRAM, 16 )
|
||||
AM_RANGE(0x002000, 0x002fff) AM_DEVREADWRITE("c352", c352_r, c352_w )
|
||||
AM_RANGE(0x002000, 0x002fff) AM_DEVREADWRITE_MODERN("c352", c352_device, read, write)
|
||||
AM_RANGE(0x004000, 0x00bfff) AM_READWRITE( c7x_shared_r, c7x_shared_w ) AM_BASE(&namcoc7x_mcuram)
|
||||
AM_RANGE(0x00c000, 0x00ffff) AM_ROM AM_REGION("c7x", 0x8c000)
|
||||
AM_RANGE(0x080000, 0x0fffff) AM_ROM AM_REGION("c7x", 0)
|
||||
|
Loading…
Reference in New Issue
Block a user