diff options
author | 2016-04-27 21:54:19 +0200 | |
---|---|---|
committer | 2016-04-27 21:55:58 +0200 | |
commit | 5607ec442e87d65df36fde30ee5e4dc3a22aee81 (patch) | |
tree | 4f0bdd8d3d820591c111e280973ea52076f02798 /src/devices/cpu/h8/h83002.h | |
parent | 04f0d72045f996f3d973ffe456e6d428e5c31626 (diff) |
h8: Add dtc, dma, watchdog (WIP) [O. Galibert]
h8: Fixes, lots of [O. Galibert]
cybiko: Make work a little emore, add v1 flash [O. Galibert]
Diffstat (limited to 'src/devices/cpu/h8/h83002.h')
-rw-r--r-- | src/devices/cpu/h8/h83002.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/devices/cpu/h8/h83002.h b/src/devices/cpu/h8/h83002.h index 860aee68ccc..64e38f43897 100644 --- a/src/devices/cpu/h8/h83002.h +++ b/src/devices/cpu/h8/h83002.h @@ -18,8 +18,9 @@ #include "h8_adc.h" #include "h8_port.h" #include "h8_intc.h" -#include "h8_sci.h" #include "h8_timer16.h" +#include "h8_sci.h" +#include "h8_watchdog.h" class h83002_device : public h8h_device { public: @@ -46,6 +47,7 @@ protected: required_device<h8h_timer16_channel_device> timer16_4; required_device<h8_sci_device> sci0; required_device<h8_sci_device> sci1; + required_device<h8_watchdog_device> watchdog; UINT8 syscr; |