diff options
Diffstat (limited to 'src/devices/bus/ieee488/c2040.cpp')
-rw-r--r-- | src/devices/bus/ieee488/c2040.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/ieee488/c2040.cpp b/src/devices/bus/ieee488/c2040.cpp index 2c6e82b1ce3..717f8feba30 100644 --- a/src/devices/bus/ieee488/c2040.cpp +++ b/src/devices/bus/ieee488/c2040.cpp @@ -265,7 +265,7 @@ READ8_MEMBER( c2040_t::riot1_pa_r ) */ - UINT8 data = 0; + uint8_t data = 0; // end or identify in data |= m_bus->eoi_r() << 5; @@ -331,7 +331,7 @@ READ8_MEMBER( c2040_t::riot1_pb_r ) */ - UINT8 data = 0; + uint8_t data = 0; // device number selection data |= m_slot->get_address() - 8; @@ -674,7 +674,7 @@ inline void c2040_t::update_ieee_signals() // c2040_t - constructor //------------------------------------------------- -c2040_t::c2040_t(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) : +c2040_t::c2040_t(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source) : device_t(mconfig, type, name, tag, owner, clock, shortname, source), device_ieee488_interface(mconfig, *this), m_maincpu(*this, M6502_TAG), @@ -694,7 +694,7 @@ c2040_t::c2040_t(const machine_config &mconfig, device_type type, const char *na { } -c2040_t::c2040_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : +c2040_t::c2040_t(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, C2040, "C2040", tag, owner, clock, "c2040", __FILE__), device_ieee488_interface(mconfig, *this), m_maincpu(*this, M6502_TAG), @@ -719,7 +719,7 @@ c2040_t::c2040_t(const machine_config &mconfig, const char *tag, device_t *owner // c3040_t - constructor //------------------------------------------------- -c3040_t::c3040_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : +c3040_t::c3040_t(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : c2040_t(mconfig, C3040, "C3040", tag, owner, clock, "c3040", __FILE__) { } @@ -727,7 +727,7 @@ c3040_t::c3040_t(const machine_config &mconfig, const char *tag, device_t *owner // c4040_t - constructor //------------------------------------------------- -c4040_t::c4040_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : +c4040_t::c4040_t(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : c2040_t(mconfig, C4040, "C4040", tag, owner, clock, "c4040", __FILE__) { } |