summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti99x/990_tap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ti99x/990_tap.h')
-rw-r--r--src/devices/bus/ti99x/990_tap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/ti99x/990_tap.h b/src/devices/bus/ti99x/990_tap.h
index 6622e2af587..b4599837aa5 100644
--- a/src/devices/bus/ti99x/990_tap.h
+++ b/src/devices/bus/ti99x/990_tap.h
@@ -18,7 +18,7 @@ struct tape_unit_t
class tap_990_device : public device_t
{
public:
- tap_990_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ tap_990_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
template<class _Object> static devcb_base &static_set_int_callback(device_t &device, _Object object)
{
return downcast<tap_990_device &>(device).m_int_line.set_callback(object);
@@ -54,7 +54,7 @@ private:
devcb_write_line m_int_line;
- UINT16 m_w[8];
+ uint16_t m_w[8];
tape_unit_t m_tape[MAX_TAPE_UNIT];
};