diff options
author | 2020-06-17 20:42:54 +0200 | |
---|---|---|
committer | 2020-06-17 20:42:54 +0200 | |
commit | 6dff78ed3ab09b83ac0aa8dc08dea227b07562a3 (patch) | |
tree | 92e33e37cb30e2b4f8829eb3dec8e7c8674b6bb4 /src/devices/machine/68307sim.cpp | |
parent | 247d71e1cabe101bd29adee2abc57fb86215a911 (diff) |
devices/machine, sound and video: removed read and write macros (nw)
Diffstat (limited to 'src/devices/machine/68307sim.cpp')
-rw-r--r-- | src/devices/machine/68307sim.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/68307sim.cpp b/src/devices/machine/68307sim.cpp index b5363ecf6af..a62a2911ab4 100644 --- a/src/devices/machine/68307sim.cpp +++ b/src/devices/machine/68307sim.cpp @@ -32,7 +32,7 @@ #define m68307SIM_BR3 (0x4c) #define m68307SIM_OR3 (0x4e) -READ16_MEMBER( m68307_cpu_device::m68307_internal_sim_r ) +uint16_t m68307_cpu_device::m68307_internal_sim_r(address_space &space, offs_t offset, uint16_t mem_mask) { assert(m_m68307SIM); m68307_sim &sim = *m_m68307SIM; @@ -62,7 +62,7 @@ READ16_MEMBER( m68307_cpu_device::m68307_internal_sim_r ) } -WRITE16_MEMBER( m68307_cpu_device::m68307_internal_sim_w ) +void m68307_cpu_device::m68307_internal_sim_w(address_space &space, offs_t offset, uint16_t data, uint16_t mem_mask) { assert(m_m68307SIM); m68307_sim &sim = *m_m68307SIM; |