summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ieee488/c2040fdc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ieee488/c2040fdc.h')
-rw-r--r--src/devices/bus/ieee488/c2040fdc.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/ieee488/c2040fdc.h b/src/devices/bus/ieee488/c2040fdc.h
index 3ff0856181b..348ff5e0469 100644
--- a/src/devices/bus/ieee488/c2040fdc.h
+++ b/src/devices/bus/ieee488/c2040fdc.h
@@ -45,7 +45,7 @@ class c2040_fdc_t : public device_t
{
public:
// construction/destruction
- c2040_fdc_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ c2040_fdc_t(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
template<class _Object> static devcb_base &set_sync_wr_callback(device_t &device, _Object object) { return downcast<c2040_fdc_t &>(device).m_write_sync.set_callback(object); }
template<class _Object> static devcb_base &set_ready_wr_callback(device_t &device, _Object object) { return downcast<c2040_fdc_t &>(device).m_write_ready.set_callback(object); }
@@ -101,15 +101,15 @@ protected:
int odd_hd;
attotime edge;
- UINT16 shift_reg;
+ uint16_t shift_reg;
int cycle_counter;
int cell_counter;
int bit_counter;
- UINT8 e;
+ uint8_t e;
offs_t i;
- UINT8 pi;
- UINT16 shift_reg_write;
+ uint8_t pi;
+ uint16_t shift_reg_write;
attotime write_start_time;
attotime write_buffer[32];
int write_position;
@@ -135,7 +135,7 @@ protected:
int m_mode_sel;
int m_rw_sel;
int m_odd_hd;
- UINT8 m_pi;
+ uint8_t m_pi;
attotime m_period;