diff options
author | 2020-06-18 20:13:33 +0200 | |
---|---|---|
committer | 2020-06-18 20:13:33 +0200 | |
commit | 57cf17dc52bcd4571a68576dd6597ddf9fae41a8 (patch) | |
tree | 9fef8bce07d80de37886a6dc44c340da05517388 /src/devices/cpu/i86/i186.h | |
parent | e96ed3b0ebd5920e8aff2914a6ff28b435210717 (diff) |
finally retired the READ8/16/32/64 and WRITE8/16/32/64 macros (nw)
Diffstat (limited to 'src/devices/cpu/i86/i186.h')
-rw-r--r-- | src/devices/cpu/i86/i186.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/i86/i186.h b/src/devices/cpu/i86/i186.h index 46055622486..f1bd6aa91b5 100644 --- a/src/devices/cpu/i86/i186.h +++ b/src/devices/cpu/i86/i186.h @@ -91,8 +91,8 @@ private: void update_dma_control(int which, int new_control); void drq_callback(int which); void inc_timer(int which); - DECLARE_READ16_MEMBER(internal_port_r); - DECLARE_WRITE16_MEMBER(internal_port_w); + uint16_t internal_port_r(offs_t offset, uint16_t mem_mask = ~0); + void internal_port_w(offs_t offset, uint16_t data); struct mem_state { |