summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms9900/tms9980a.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tms9900/tms9980a.h')
-rw-r--r--src/devices/cpu/tms9900/tms9980a.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/devices/cpu/tms9900/tms9980a.h b/src/devices/cpu/tms9900/tms9980a.h
index 970a5f70839..963d2e7d2fb 100644
--- a/src/devices/cpu/tms9900/tms9980a.h
+++ b/src/devices/cpu/tms9900/tms9980a.h
@@ -30,6 +30,8 @@ public:
tms9980a_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
+ tms9980a_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
+
void mem_read(void) override;
void mem_write(void) override;
void acquire_instruction(void) override;
@@ -50,7 +52,14 @@ protected:
address_space_config m_io_config80;
};
+class tms9981_device : public tms9980a_device
+{
+public:
+ tms9981_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+};
+
// device type definition
DECLARE_DEVICE_TYPE(TMS9980A, tms9980a_device)
+DECLARE_DEVICE_TYPE(TMS9981, tms9981_device)
#endif // MAME_CPU_TMS9900_TMS9980A_H