summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m6805/m68hc05.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/m6805/m68hc05.h')
-rw-r--r--src/devices/cpu/m6805/m68hc05.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/devices/cpu/m6805/m68hc05.h b/src/devices/cpu/m6805/m68hc05.h
index 4cc90c97a78..4b01e964c31 100644
--- a/src/devices/cpu/m6805/m68hc05.h
+++ b/src/devices/cpu/m6805/m68hc05.h
@@ -18,6 +18,7 @@ DECLARE_DEVICE_TYPE(M68HC05C4, m68hc05c4_device)
DECLARE_DEVICE_TYPE(M68HC05C8, m68hc05c8_device)
DECLARE_DEVICE_TYPE(M68HC705C8A, m68hc705c8a_device)
DECLARE_DEVICE_TYPE(M68HC05L9, m68hc05l9_device)
+DECLARE_DEVICE_TYPE(M68HC05L11, m68hc05l11_device)
//**************************************************************************
@@ -251,6 +252,22 @@ protected:
};
+// ======================> m68hc05l11_device
+
+class m68hc05l11_device : public m68hc05_device
+{
+public:
+ m68hc05l11_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock);
+
+protected:
+ void l11_map(address_map &map);
+
+ virtual void device_start() override;
+
+ virtual std::unique_ptr<util::disasm_interface> create_disassembler() override;
+};
+
+
/****************************************************************************
* 68HC05 section
****************************************************************************/