summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h83048.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h8/h83048.h')
-rw-r--r--src/devices/cpu/h8/h83048.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/cpu/h8/h83048.h b/src/devices/cpu/h8/h83048.h
index 34cb2358f3b..367313290fc 100644
--- a/src/devices/cpu/h8/h83048.h
+++ b/src/devices/cpu/h8/h83048.h
@@ -32,8 +32,8 @@
class h83048_device : public h8h_device {
public:
- h83048_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
- h83048_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ h83048_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source);
+ h83048_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
DECLARE_READ8_MEMBER(syscr_r);
DECLARE_WRITE8_MEMBER(syscr_w);
@@ -62,14 +62,14 @@ protected:
required_device<h8_sci_device> sci1;
required_device<h8_watchdog_device> watchdog;
- UINT32 ram_start;
- UINT8 syscr;
+ uint32_t ram_start;
+ 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);
@@ -80,17 +80,17 @@ protected:
class h83044_device : public h83048_device {
public:
- h83044_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ h83044_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
class h83045_device : public h83048_device {
public:
- h83045_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ h83045_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
class h83047_device : public h83048_device {
public:
- h83047_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ h83047_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
extern const device_type H83044;