summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/oricext/jasmin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/oricext/jasmin.cpp')
-rw-r--r--src/devices/bus/oricext/jasmin.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/oricext/jasmin.cpp b/src/devices/bus/oricext/jasmin.cpp
index b5af4ec8049..20271f76be1 100644
--- a/src/devices/bus/oricext/jasmin.cpp
+++ b/src/devices/bus/oricext/jasmin.cpp
@@ -28,11 +28,11 @@ INPUT_PORTS_END
void jasmin_device::map(address_map &map)
{
map(0x3f4, 0x3f7).rw("fdc", FUNC(wd1770_device::read), FUNC(wd1770_device::write));
- map(0x3f8, 0x3f8).w(this, FUNC(jasmin_device::side_sel_w));
- map(0x3f9, 0x3f9).w(this, FUNC(jasmin_device::fdc_reset_w));
- map(0x3fa, 0x3fa).w(this, FUNC(jasmin_device::ram_access_w));
- map(0x3fb, 0x3fb).w(this, FUNC(jasmin_device::rom_access_w));
- map(0x3fc, 0x3ff).w(this, FUNC(jasmin_device::select_w));
+ map(0x3f8, 0x3f8).w(FUNC(jasmin_device::side_sel_w));
+ map(0x3f9, 0x3f9).w(FUNC(jasmin_device::fdc_reset_w));
+ map(0x3fa, 0x3fa).w(FUNC(jasmin_device::ram_access_w));
+ map(0x3fb, 0x3fb).w(FUNC(jasmin_device::rom_access_w));
+ map(0x3fc, 0x3ff).w(FUNC(jasmin_device::select_w));
}
jasmin_device::jasmin_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :