summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/victor9k_fdc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/victor9k_fdc.h')
-rw-r--r--src/mame/machine/victor9k_fdc.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/mame/machine/victor9k_fdc.h b/src/mame/machine/victor9k_fdc.h
index 1d23c015be5..98e1d491507 100644
--- a/src/mame/machine/victor9k_fdc.h
+++ b/src/mame/machine/victor9k_fdc.h
@@ -45,7 +45,7 @@ class victor_9000_fdc_t : public device_t
{
public:
// construction/destruction
- victor_9000_fdc_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ victor_9000_fdc_t(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
template<class _Object> static devcb_base &set_irq_wr_callback(device_t &device, _Object object) { return downcast<victor_9000_fdc_t &>(device).m_irq_cb.set_callback(object); }
template<class _Object> static devcb_base &set_syn_wr_callback(device_t &device, _Object object) { return downcast<victor_9000_fdc_t &>(device).m_syn_cb.set_callback(object); }
@@ -129,10 +129,10 @@ private:
// common
offs_t i;
- UINT8 e;
+ uint8_t e;
// read
- UINT16 shift_reg;
+ uint16_t shift_reg;
int bit_counter;
int sync_bit_counter;
int sync_byte_counter;
@@ -144,8 +144,8 @@ private:
int gcr_err;
// write
- UINT16 shift_reg_write;
- UINT8 wd;
+ uint16_t shift_reg_write;
+ uint8_t wd;
int wrsync;
int gcr_data;
int erase;
@@ -164,8 +164,8 @@ private:
required_memory_region m_gcr_rom;
void update_stepper_motor(floppy_image_device *floppy, int stp, int old_st, int st);
- void update_spindle_motor(floppy_image_device *floppy, emu_timer *t_tach, bool start, bool stop, bool sel, UINT8 &da);
- void update_rpm(floppy_image_device *floppy, emu_timer *t_tach, bool sel, UINT8 &da);
+ void update_spindle_motor(floppy_image_device *floppy, emu_timer *t_tach, bool start, bool stop, bool sel, uint8_t &da);
+ void update_rpm(floppy_image_device *floppy, emu_timer *t_tach, bool sel, uint8_t &da);
void update_rdy();
image_init_result load0_cb(floppy_image_device *device);
@@ -174,12 +174,12 @@ private:
image_init_result load1_cb(floppy_image_device *device);
void unload1_cb(floppy_image_device *device);
- UINT8 m_p2;
+ uint8_t m_p2;
/* floppy state */
- UINT8 m_da;
- UINT8 m_da0;
- UINT8 m_da1;
+ uint8_t m_da;
+ uint8_t m_da0;
+ uint8_t m_da1;
int m_start0;
int m_stop0;
int m_start1;
@@ -194,10 +194,10 @@ private:
int m_scp_rdy1;
int m_via_rdy0;
int m_via_rdy1;
- UINT8 m_scp_l0ms;
- UINT8 m_scp_l1ms;
- UINT8 m_via_l0ms;
- UINT8 m_via_l1ms;
+ uint8_t m_scp_l0ms;
+ uint8_t m_scp_l1ms;
+ uint8_t m_via_l0ms;
+ uint8_t m_via_l1ms;
int m_st0;
int m_st1;
int m_stp0;
@@ -206,7 +206,7 @@ private:
int m_side;
int m_drw;
int m_erase;
- UINT8 m_wd;
+ uint8_t m_wd;
int m_wrsync;
int m_via4_irq;