summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/zndip.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/zndip.h')
-rw-r--r--src/mame/machine/zndip.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/zndip.h b/src/mame/machine/zndip.h
index 405ee496fda..75cb607f5f3 100644
--- a/src/mame/machine/zndip.h
+++ b/src/mame/machine/zndip.h
@@ -21,7 +21,7 @@ extern const device_type ZNDIP;
class zndip_device : public device_t
{
public:
- zndip_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ zndip_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// static configuration helpers
template<class _Object> static devcb_base &set_data_handler(device_t &device, _Object object) { return downcast<zndip_device &>(device).m_data_handler.set_callback(object); }
@@ -43,7 +43,7 @@ private:
int m_select;
int m_clock;
- UINT8 m_bit;
+ uint8_t m_bit;
emu_timer *m_dip_timer;
};