summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/msm58321.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/msm58321.h')
-rw-r--r--src/devices/machine/msm58321.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/msm58321.h b/src/devices/machine/msm58321.h
index b4f9de48053..ef6bf799bdd 100644
--- a/src/devices/machine/msm58321.h
+++ b/src/devices/machine/msm58321.h
@@ -60,7 +60,7 @@ class msm58321_device : public device_t,
{
public:
// construction/destruction
- msm58321_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ msm58321_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// static configuration helpers
template<class _Object> static devcb_base &set_d0_handler(device_t &device, _Object object) { return downcast<msm58321_device &>(device).m_d0_handler.set_callback(object); }
@@ -132,8 +132,8 @@ private:
int m_test; // test flag
int m_cs1; // chip select 1
- UINT8 m_address; // address latch
- UINT8 m_reg[13]; // registers
+ uint8_t m_address; // address latch
+ uint8_t m_reg[13]; // registers
// timers
emu_timer *m_clock_timer;