summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h8325.h
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2024-02-07 02:52:19 +0100
committer hap <happppp@users.noreply.github.com>2024-02-07 02:52:30 +0100
commit6853c9e81145041678bba4eab47b4d9a13d76284 (patch)
treecff25d8f5e96d9ce554e0c9e921518b781f2ef96 /src/devices/cpu/h8/h8325.h
parent2ee950aa44247385ebbc506943766850bf732e23 (diff)
h8: add h8/325 interrupt controller and 16bit timer,
prisma: add lcd screen and some i/o
Diffstat (limited to 'src/devices/cpu/h8/h8325.h')
-rw-r--r--src/devices/cpu/h8/h8325.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/h8/h8325.h b/src/devices/cpu/h8/h8325.h
index bc81961d25e..235d5a2838e 100644
--- a/src/devices/cpu/h8/h8325.h
+++ b/src/devices/cpu/h8/h8325.h
@@ -56,7 +56,7 @@ public:
protected:
h8325_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, uint32_t start);
- required_device<h8_intc_device> m_intc;
+ required_device<h8325_intc_device> m_intc;
required_device<h8_port_device> m_port1;
required_device<h8_port_device> m_port2;
required_device<h8_port_device> m_port3;
@@ -67,7 +67,7 @@ protected:
required_device<h8_timer8_channel_device> m_timer8_0;
required_device<h8_timer8_channel_device> m_timer8_1;
required_device<h8_timer16_device> m_timer16;
- required_device<h8_timer16_channel_device> m_timer16_0;
+ required_device<h8325_timer16_channel_device> m_timer16_0;
uint8_t m_syscr;
uint32_t m_ram_start;