summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/cuda.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/cuda.cpp')
-rw-r--r--src/mame/machine/cuda.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/machine/cuda.cpp b/src/mame/machine/cuda.cpp
index 0bfcb10f035..59b51327211 100644
--- a/src/mame/machine/cuda.cpp
+++ b/src/mame/machine/cuda.cpp
@@ -69,14 +69,14 @@ ROM_END
void cuda_device::cuda_map(address_map &map)
{
- map(0x0000, 0x0002).rw(this, FUNC(cuda_device::ports_r), FUNC(cuda_device::ports_w));
- map(0x0004, 0x0006).rw(this, FUNC(cuda_device::ddr_r), FUNC(cuda_device::ddr_w));
- map(0x0007, 0x0007).rw(this, FUNC(cuda_device::pll_r), FUNC(cuda_device::pll_w));
- map(0x0008, 0x0008).rw(this, FUNC(cuda_device::timer_ctrl_r), FUNC(cuda_device::timer_ctrl_w));
- map(0x0009, 0x0009).rw(this, FUNC(cuda_device::timer_counter_r), FUNC(cuda_device::timer_counter_w));
- map(0x0012, 0x0012).rw(this, FUNC(cuda_device::onesec_r), FUNC(cuda_device::onesec_w));
+ map(0x0000, 0x0002).rw(FUNC(cuda_device::ports_r), FUNC(cuda_device::ports_w));
+ map(0x0004, 0x0006).rw(FUNC(cuda_device::ddr_r), FUNC(cuda_device::ddr_w));
+ map(0x0007, 0x0007).rw(FUNC(cuda_device::pll_r), FUNC(cuda_device::pll_w));
+ map(0x0008, 0x0008).rw(FUNC(cuda_device::timer_ctrl_r), FUNC(cuda_device::timer_ctrl_w));
+ map(0x0009, 0x0009).rw(FUNC(cuda_device::timer_counter_r), FUNC(cuda_device::timer_counter_w));
+ map(0x0012, 0x0012).rw(FUNC(cuda_device::onesec_r), FUNC(cuda_device::onesec_w));
map(0x0090, 0x00ff).ram(); // work RAM and stack
- map(0x0100, 0x01ff).rw(this, FUNC(cuda_device::pram_r), FUNC(cuda_device::pram_w));
+ map(0x0100, 0x01ff).rw(FUNC(cuda_device::pram_r), FUNC(cuda_device::pram_w));
map(0x0f00, 0x1fff).rom().region(CUDA_CPU_TAG, 0);
}