summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/nec/v53.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/nec/v53.h')
-rw-r--r--src/devices/cpu/nec/v53.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/devices/cpu/nec/v53.h b/src/devices/cpu/nec/v53.h
index 6afdd1c4f39..2f1f58d8361 100644
--- a/src/devices/cpu/nec/v53.h
+++ b/src/devices/cpu/nec/v53.h
@@ -107,7 +107,7 @@
class v53_base_device : public nec_common_device
{
public:
- v53_base_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, offs_t fetch_xor, UINT8 prefetch_size, UINT8 prefetch_cycles, UINT32 chip_type);
+ v53_base_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, offs_t fetch_xor, uint8_t prefetch_size, uint8_t prefetch_cycles, uint32_t chip_type);
DECLARE_WRITE8_MEMBER(BSEL_w);
DECLARE_WRITE8_MEMBER(BADR_w);
@@ -131,19 +131,19 @@ public:
DECLARE_WRITE8_MEMBER(OPSEL_w);
DECLARE_WRITE8_MEMBER(SCTL_w);
- UINT8 m_SCTL;
- UINT8 m_OPSEL;
+ uint8_t m_SCTL;
+ uint8_t m_OPSEL;
- UINT8 m_SULA;
- UINT8 m_TULA;
- UINT8 m_IULA;
- UINT8 m_DULA;
- UINT8 m_OPHA;
+ uint8_t m_SULA;
+ uint8_t m_TULA;
+ uint8_t m_IULA;
+ uint8_t m_DULA;
+ uint8_t m_OPHA;
// SCU
DECLARE_READ8_MEMBER(scu_simk_r);
DECLARE_WRITE8_MEMBER(scu_simk_w);
- UINT8 m_simk;
+ uint8_t m_simk;
template<class _Object> static devcb_base &set_txd_handler(device_t &device, _Object object) { return downcast<v53_base_device &>(device).m_txd_handler.set_callback(object); }
template<class _Object> static devcb_base &set_dtr_handler(device_t &device, _Object object) { return downcast<v53_base_device &>(device).m_dtr_handler.set_callback(object); }
template<class _Object> static devcb_base &set_rts_handler(device_t &device, _Object object) { return downcast<v53_base_device &>(device).m_rts_handler.set_callback(object); }
@@ -296,13 +296,13 @@ protected:
class v53_device : public v53_base_device
{
public:
- v53_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ v53_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
class v53a_device : public v53_base_device
{
public:
- v53a_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ v53a_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
extern const device_type V53;