diff options
author | 2023-06-03 17:57:05 +0200 | |
---|---|---|
committer | 2023-06-06 10:27:00 +0200 | |
commit | 37dda0012c1b4113ab6b124956ee6989af2ceffd (patch) | |
tree | 6ba23d090bf908981bb1cbfed37aa5df5ed13f05 /src/devices/cpu/h8/h8s2357.h | |
parent | c07474dfb380aa4c98ad2c64e4d0264a64e38d6e (diff) |
h8_dma: reorganize, upgrade
Diffstat (limited to 'src/devices/cpu/h8/h8s2357.h')
-rw-r--r-- | src/devices/cpu/h8/h8s2357.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/devices/cpu/h8/h8s2357.h b/src/devices/cpu/h8/h8s2357.h index 1fbe1653e1d..b89d299628b 100644 --- a/src/devices/cpu/h8/h8s2357.h +++ b/src/devices/cpu/h8/h8s2357.h @@ -28,6 +28,7 @@ #include "h8s2000.h" #include "h8_intc.h" #include "h8_adc.h" +#include "h8_dma.h" #include "h8_port.h" #include "h8_timer8.h" #include "h8_timer16.h" @@ -44,6 +45,9 @@ public: protected: required_device<h8s_intc_device> m_intc; required_device<h8_adc_device> m_adc; + required_device<h8s_dma_device> m_dma; + required_device<h8s_dma_channel_device> m_dma0; + required_device<h8s_dma_channel_device> m_dma1; required_device<h8_port_device> m_port1; required_device<h8_port_device> m_port2; required_device<h8_port_device> m_port3; |