diff options
author | 2015-11-19 19:44:23 +0100 | |
---|---|---|
committer | 2015-11-19 19:45:32 +0100 | |
commit | b7f4c4bd2084970f3ec41057a6bafbba96a2386a (patch) | |
tree | 0228ce3f01376ddc19fa529409f5281e8040e433 /src/devices/cpu/h8/h8_port.cpp | |
parent | ae2f72348d5d2c5d55f1e85cc133912638d0effb (diff) |
Fixed uninitialized class members
Diffstat (limited to 'src/devices/cpu/h8/h8_port.cpp')
-rw-r--r-- | src/devices/cpu/h8/h8_port.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/h8/h8_port.cpp b/src/devices/cpu/h8/h8_port.cpp index 0f289edc7a3..6896a5b167a 100644 --- a/src/devices/cpu/h8/h8_port.cpp +++ b/src/devices/cpu/h8/h8_port.cpp @@ -7,7 +7,7 @@ const device_type H8_PORT = &device_creator<h8_port_device>; h8_port_device::h8_port_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, H8_PORT, "H8 digital port", tag, owner, clock, "h8_digital_port", __FILE__), - cpu(*this, DEVICE_SELF_OWNER) + cpu(*this, DEVICE_SELF_OWNER), io(nullptr), address(0), default_ddr(0), ddr(0), pcr(0), odr(0), mask(0), dr(0), last_output(0) { } |