diff options
author | 2015-09-13 08:41:44 +0200 | |
---|---|---|
committer | 2015-09-13 08:41:44 +0200 | |
commit | f88cefad27a1737c76e09d99c9fb43e173506081 (patch) | |
tree | 2d8167d03579c46e226471747eb4407bd00ed6fa /src/devices/cpu/h8/h83002.h | |
parent | e92ac9e0fa8e99869894bea00589bbb526be30aa (diff) |
Move all devices into separate part of src tree (nw)
Diffstat (limited to 'src/devices/cpu/h8/h83002.h')
-rw-r--r-- | src/devices/cpu/h8/h83002.h | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/src/devices/cpu/h8/h83002.h b/src/devices/cpu/h8/h83002.h new file mode 100644 index 00000000000..c6b9612fc9c --- /dev/null +++ b/src/devices/cpu/h8/h83002.h @@ -0,0 +1,67 @@ +// license:BSD-3-Clause +// copyright-holders:Olivier Galibert +/*************************************************************************** + + h83002.h + + H8/3002 + + H8/300H-based mcus. + + +***************************************************************************/ + +#ifndef __H83002_H__ +#define __H83002_H__ + +#include "h8h.h" +#include "h8_adc.h" +#include "h8_port.h" +#include "h8_intc.h" +#include "h8_sci.h" +#include "h8_timer16.h" + +class h83002_device : public h8h_device { +public: + h83002_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + + DECLARE_READ8_MEMBER(syscr_r); + DECLARE_WRITE8_MEMBER(syscr_w); + +protected: + required_device<h8h_intc_device> intc; + required_device<h8_adc_device> adc; + required_device<h8_port_device> port4; + required_device<h8_port_device> port6; + required_device<h8_port_device> port7; + required_device<h8_port_device> port8; + required_device<h8_port_device> port9; + required_device<h8_port_device> porta; + required_device<h8_port_device> portb; + required_device<h8_timer16_device> timer16; + required_device<h8h_timer16_channel_device> timer16_0; + required_device<h8h_timer16_channel_device> timer16_1; + required_device<h8h_timer16_channel_device> timer16_2; + required_device<h8h_timer16_channel_device> timer16_3; + required_device<h8h_timer16_channel_device> timer16_4; + required_device<h8_sci_device> sci0; + required_device<h8_sci_device> sci1; + + UINT8 syscr; + + virtual void update_irq_filter(); + virtual void interrupt_taken(); + virtual int trapa_setup(); + virtual void irq_setup(); + virtual void internal_update(UINT64 current_time); + virtual machine_config_constructor device_mconfig_additions() const; + DECLARE_ADDRESS_MAP(map, 16); + + virtual void device_start(); + virtual void device_reset(); + virtual void execute_set_input(int inputnum, int state); +}; + +extern const device_type H83002; + +#endif |