summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/ncr5380.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/ncr5380.h')
-rw-r--r--src/devices/machine/ncr5380.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/machine/ncr5380.h b/src/devices/machine/ncr5380.h
index 77e8adc58b0..7acf34fe4f0 100644
--- a/src/devices/machine/ncr5380.h
+++ b/src/devices/machine/ncr5380.h
@@ -41,13 +41,13 @@ class ncr5380_device : public legacy_scsi_host_adapter
{
public:
// construction/destruction
- ncr5380_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ ncr5380_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
template<class _Object> static devcb_base &set_irq_callback(device_t &device, _Object object) { return downcast<ncr5380_device &>(device).m_irq_cb.set_callback(object); }
// our API
- UINT8 ncr5380_read_reg(UINT32 offset);
- void ncr5380_write_reg(UINT32 offset, UINT8 data);
+ uint8_t ncr5380_read_reg(uint32_t offset);
+ void ncr5380_write_reg(uint32_t offset, uint8_t data);
protected:
// device-level overrides
@@ -56,11 +56,11 @@ protected:
virtual void device_stop() override;
private:
- UINT8 m_5380_Registers[8];
- UINT8 m_last_id;
- UINT8 m_5380_Command[32];
- INT32 m_cmd_ptr, m_d_ptr, m_d_limit, m_next_req_flag;
- UINT8 m_5380_Data[512];
+ uint8_t m_5380_Registers[8];
+ uint8_t m_last_id;
+ uint8_t m_5380_Command[32];
+ int32_t m_cmd_ptr, m_d_ptr, m_d_limit, m_next_req_flag;
+ uint8_t m_5380_Data[512];
devcb_write_line m_irq_cb; /* irq callback */
};