summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/k056230.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/k056230.h')
-rw-r--r--src/devices/machine/k056230.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/k056230.h b/src/devices/machine/k056230.h
index 4fa8d165fd1..1b34ef40c5a 100644
--- a/src/devices/machine/k056230.h
+++ b/src/devices/machine/k056230.h
@@ -36,7 +36,7 @@ class k056230_device : public device_t
{
public:
// construction/destruction
- k056230_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ k056230_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
static void set_cpu_tag(device_t &device, const char *tag) { downcast<k056230_device &>(device).m_cpu.set_tag(tag); }
static void set_thunderh_hack(device_t &device, int thunderh) { downcast<k056230_device &>(device).m_is_thunderh = thunderh; }
@@ -61,7 +61,7 @@ private:
int m_is_thunderh;
required_device<cpu_device> m_cpu;
- UINT32 m_ram[0x2000];
+ uint32_t m_ram[0x2000];
};