summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/k053252.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/k053252.h')
-rw-r--r--src/devices/machine/k053252.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/machine/k053252.h b/src/devices/machine/k053252.h
index 54787a6ee78..577654559c8 100644
--- a/src/devices/machine/k053252.h
+++ b/src/devices/machine/k053252.h
@@ -34,7 +34,7 @@ class k053252_device : public device_t,
public device_video_interface
{
public:
- k053252_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ k053252_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
~k053252_device() {}
template<class _Object> static devcb_base &set_int1_en_callback(device_t &device, _Object object) { return downcast<k053252_device &>(device).m_int1_en_cb.set_callback(object); }
@@ -62,10 +62,10 @@ protected:
private:
// internal state
- UINT8 m_regs[16];
- UINT16 m_hc,m_hfp,m_hbp;
- UINT16 m_vc,m_vfp,m_vbp;
- UINT8 m_vsw,m_hsw;
+ uint8_t m_regs[16];
+ uint16_t m_hc,m_hfp,m_hbp;
+ uint16_t m_vc,m_vfp,m_vbp;
+ uint8_t m_vsw,m_hsw;
devcb_write_line m_int1_en_cb;
devcb_write_line m_int2_en_cb;