mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
fix build (nw)
This commit is contained in:
parent
a0c5f7f97c
commit
c9f3caf155
2 changed files with 1 additions and 3 deletions
|
@ -190,7 +190,7 @@ static ADDRESS_MAP_START( segasp_map, AS_PROGRAM, 64, segasp_state )
|
|||
AM_RANGE(0x00700000, 0x00707fff) AM_MIRROR(0x02000000) AM_READWRITE32(dc_aica_reg_r, dc_aica_reg_w, 0xffffffffffffffffU)
|
||||
AM_RANGE(0x00710000, 0x0071000f) AM_MIRROR(0x02000000) AM_DEVREADWRITE16("aicartc", aicartc_device, read, write, 0x0000ffff0000ffffU )
|
||||
|
||||
AM_RANGE(0x00800000, 0x00ffffff) AM_MIRROR(0x02000000) AM_READWRITE(naomi_arm_r, naomi_arm_w ) // sound RAM (8 MB)
|
||||
AM_RANGE(0x00800000, 0x00ffffff) AM_MIRROR(0x02000000) AM_READWRITE(sh4_soundram_r, sh4_soundram_w) // sound RAM (8 MB)
|
||||
|
||||
/* External Device */
|
||||
AM_RANGE(0x01000000, 0x0100ffff) AM_RAM // banked access to ROM/NET board address space, mainly backup SRAM and ATA
|
||||
|
|
|
@ -56,8 +56,6 @@ class naomi_state : public dc_state
|
|||
DECLARE_DRIVER_INIT(hotd2);
|
||||
DECLARE_DRIVER_INIT(naomi_mp);
|
||||
|
||||
DECLARE_READ64_MEMBER( naomi_arm_r );
|
||||
DECLARE_WRITE64_MEMBER( naomi_arm_w );
|
||||
DECLARE_READ64_MEMBER( naomi_unknown1_r );
|
||||
DECLARE_WRITE64_MEMBER( naomi_unknown1_w );
|
||||
DECLARE_READ64_MEMBER( eeprom_93c46a_r );
|
||||
|
|
Loading…
Reference in a new issue