Previous 199869 Revisions Next

r36627 Wednesday 25th March, 2015 at 09:30:13 UTC by Oliver Stöneberg
fixed Visual Studio compilation (nw)
[src/emu/machine]vrc4373.c

trunk/src/emu/machine/vrc4373.c
r245138r245139
1313
1414// cpu i/f map
1515DEVICE_ADDRESS_MAP_START(cpu_map, 32, vrc4373_device)
16   AM_RANGE(0x00000000, 0x0000007b) AM_READWRITE(    vrc4373_device::cpu_if_r,          vrc4373_device::cpu_if_w)
16   AM_RANGE(0x00000000, 0x0000007b) AM_READWRITE(    cpu_if_r,          cpu_if_w)
1717ADDRESS_MAP_END
1818
1919// Target Window 1 map
2020DEVICE_ADDRESS_MAP_START(target1_map, 32, vrc4373_device)
21   AM_RANGE(0x00000000, 0xFFFFFFFF) AM_READWRITE(    vrc4373_device::target1_r,          vrc4373_device::target1_w)
21   AM_RANGE(0x00000000, 0xFFFFFFFF) AM_READWRITE(    target1_r,          target1_w)
2222ADDRESS_MAP_END
2323
2424// Target Window 2 map
2525DEVICE_ADDRESS_MAP_START(target2_map, 32, vrc4373_device)
26   AM_RANGE(0x00000000, 0xFFFFFFFF) AM_READWRITE(    vrc4373_device::target2_r,          vrc4373_device::target2_w)
26   AM_RANGE(0x00000000, 0xFFFFFFFF) AM_READWRITE(    target2_r,          target2_w)
2727ADDRESS_MAP_END
2828
2929vrc4373_device::vrc4373_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)


Previous 199869 Revisions Next


© 1997-2024 The MAME Team