diff options
author | 2023-05-28 23:40:30 +0200 | |
---|---|---|
committer | 2023-06-06 10:26:58 +0200 | |
commit | c07474dfb380aa4c98ad2c64e4d0264a64e38d6e (patch) | |
tree | d0b78c90d2189422d50e6be2ab2f49c348fd2d36 /src/devices/cpu/h8/h8_port.cpp | |
parent | 780f647c17b4590b02d9c4185a002540bdfb5de2 (diff) |
h8: Use finders
Diffstat (limited to 'src/devices/cpu/h8/h8_port.cpp')
-rw-r--r-- | src/devices/cpu/h8/h8_port.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/devices/cpu/h8/h8_port.cpp b/src/devices/cpu/h8/h8_port.cpp index 09a86fe4546..e85a0884f02 100644 --- a/src/devices/cpu/h8/h8_port.cpp +++ b/src/devices/cpu/h8/h8_port.cpp @@ -11,13 +11,6 @@ h8_port_device::h8_port_device(const machine_config &mconfig, const char *tag, d { } -void h8_port_device::set_info(int address, uint8_t default_ddr, uint8_t mask) -{ - m_address = address; - m_default_ddr = default_ddr; - m_mask = mask; -} - void h8_port_device::ddr_w(uint8_t data) { // logerror("ddr_w %02x\n", data); |