From f88cefad27a1737c76e09d99c9fb43e173506081 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sun, 13 Sep 2015 08:41:44 +0200 Subject: Move all devices into separate part of src tree (nw) --- src/emu/cpu/h8/h83048.h | 99 ------------------------------------------------- 1 file changed, 99 deletions(-) delete mode 100644 src/emu/cpu/h8/h83048.h (limited to 'src/emu/cpu/h8/h83048.h') 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 intc; - required_device adc; - required_device port1; - required_device port2; - required_device port3; - required_device port4; - required_device port5; - required_device port6; - required_device port7; - required_device port8; - required_device port9; - required_device porta; - required_device portb; - required_device timer16; - required_device timer16_0; - required_device timer16_1; - required_device timer16_2; - required_device timer16_3; - required_device timer16_4; - required_device sci0; - required_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 -- cgit v1.2.3-70-g09d2