diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/devices/cpu/h8/h83002.h | |
parent | 333bff8de64dfaeb98134000412796b4fdef970b (diff) |
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8
also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/devices/cpu/h8/h83002.h')
-rw-r--r-- | src/devices/cpu/h8/h83002.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/h8/h83002.h b/src/devices/cpu/h8/h83002.h index 64e38f43897..4f524c6f0b9 100644 --- a/src/devices/cpu/h8/h83002.h +++ b/src/devices/cpu/h8/h83002.h @@ -24,7 +24,7 @@ class h83002_device : public h8h_device { public: - h83002_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + h83002_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); DECLARE_READ8_MEMBER(syscr_r); DECLARE_WRITE8_MEMBER(syscr_w); @@ -49,13 +49,13 @@ protected: required_device<h8_sci_device> sci1; required_device<h8_watchdog_device> watchdog; - UINT8 syscr; + uint8_t syscr; virtual void update_irq_filter() override; virtual void interrupt_taken() override; virtual int trapa_setup() override; virtual void irq_setup() override; - virtual void internal_update(UINT64 current_time) override; + virtual void internal_update(uint64_t current_time) override; virtual machine_config_constructor device_mconfig_additions() const override; DECLARE_ADDRESS_MAP(map, 16); |