summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/h8/h83048.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-09-13 08:41:44 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2015-09-13 08:41:44 +0200
commitf88cefad27a1737c76e09d99c9fb43e173506081 (patch)
tree2d8167d03579c46e226471747eb4407bd00ed6fa /src/emu/cpu/h8/h83048.h
parente92ac9e0fa8e99869894bea00589bbb526be30aa (diff)
Move all devices into separate part of src tree (nw)
Diffstat (limited to 'src/emu/cpu/h8/h83048.h')
-rw-r--r--src/emu/cpu/h8/h83048.h99
1 files changed, 0 insertions, 99 deletions
diff --git a/src/emu/cpu/h8/h83048.h b/src/emu/cpu/h8/h83048.h
deleted file mode 100644
index ecb3ed573d5..00000000000
--- a/src/emu/cpu/h8/h83048.h
+++ /dev/null
@@ -1,99 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Olivier Galibert
-/***************************************************************************
-
- h83048.h
-
- H8-3048 family emulation
-
- H8-300H-based mcus.
-
- Variant ROM RAM
- H8/3044 32K 2K
- H8/3045 64K 2K
- H8/3047 96K 4K
- H8/3048 192K 4K
-
- The 3394, 3396, and 3997 variants are the mask-rom versions.
-
-
-***************************************************************************/
-
-#ifndef __H83048_H__
-#define __H83048_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 h83048_device : public h8h_device {
-public:
- h83048_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
- h83048_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> port1;
- required_device<h8_port_device> port2;
- required_device<h8_port_device> port3;
- required_device<h8_port_device> port4;
- required_device<h8_port_device> port5;
- 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;
-
- UINT32 ram_start;
- 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);
-};
-
-class h83044_device : public h83048_device {
-public:
- h83044_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
-};
-
-class h83045_device : public h83048_device {
-public:
- h83045_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
-};
-
-class h83047_device : public h83048_device {
-public:
- h83047_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
-};
-
-extern const device_type H83044;
-extern const device_type H83045;
-extern const device_type H83047;
-extern const device_type H83048;
-
-#endif