summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/mcs51/axc51-core.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/mcs51/axc51-core.h')
-rw-r--r--src/devices/cpu/mcs51/axc51-core.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/devices/cpu/mcs51/axc51-core.h b/src/devices/cpu/mcs51/axc51-core.h
deleted file mode 100644
index f225fecd4da..00000000000
--- a/src/devices/cpu/mcs51/axc51-core.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:David Haywood
-/*****************************************************************************
-
- AXC51-CORE (AppoTech Inc.)
-
- used in
-
- AX208 SoC
-
- *****************************************************************************/
-
-#ifndef MAME_CPU_MCS51_AXC51_CORE_H
-#define MAME_CPU_MCS51_AXC51_CORE_H
-
-#pragma once
-
-#include "mcs51.h"
-
-DECLARE_DEVICE_TYPE(AXC51CORE, axc51core_cpu_device)
-DECLARE_DEVICE_TYPE(AX208, ax208_cpu_device)
-
-class axc51core_cpu_device : public mcs51_cpu_device
-{
-public:
- // construction/destruction
- axc51core_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- axc51core_cpu_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, int program_width, int data_width, uint8_t features = 0);
-
-protected:
- virtual std::unique_ptr<util::disasm_interface> create_disassembler() override;
-};
-
-
-class ax208_cpu_device : public axc51core_cpu_device
-{
-public:
- // construction/destruction
- ax208_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
-
-protected:
- virtual std::unique_ptr<util::disasm_interface> create_disassembler() override;
- virtual const tiny_rom_entry *device_rom_region() const override;
-};
-
-#endif // MAME_CPU_MCS51_AXC51_CORE_H