diff options
Diffstat (limited to 'src/devices/bus/qbus/pc11.h')
-rw-r--r-- | src/devices/bus/qbus/pc11.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/bus/qbus/pc11.h b/src/devices/bus/qbus/pc11.h index e8f35860ec3..8d32925f459 100644 --- a/src/devices/bus/qbus/pc11.h +++ b/src/devices/bus/qbus/pc11.h @@ -61,17 +61,17 @@ private: int m_rxvec; int m_txvec; - device_image_interface *m_fd = nullptr; + device_image_interface *m_fd; - line_state m_rxrdy{}; - line_state m_txrdy{}; + line_state m_rxrdy; + line_state m_txrdy; - uint16_t m_rcsr = 0; - uint16_t m_rbuf = 0; - uint16_t m_tcsr = 0; - uint16_t m_tbuf = 0; + uint16_t m_rcsr; + uint16_t m_rbuf; + uint16_t m_tcsr; + uint16_t m_tbuf; - const char *pc11_regnames[4]{}; + const char *pc11_regnames[4]; }; |