summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/nec/nec.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/nec/nec.h')
-rw-r--r--src/emu/cpu/nec/nec.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/emu/cpu/nec/nec.h b/src/emu/cpu/nec/nec.h
index d79c0741e88..b92b8c2258e 100644
--- a/src/emu/cpu/nec/nec.h
+++ b/src/emu/cpu/nec/nec.h
@@ -414,10 +414,31 @@ public:
v33_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
};
+class v33a_device : public nec_common_device
+{
+public:
+ v33a_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+};
+
+class v53_device : public nec_common_device
+{
+public:
+ v53_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+};
+
+class v53a_device : public nec_common_device
+{
+public:
+ v53a_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+};
+
extern const device_type V20;
extern const device_type V30;
extern const device_type V33;
+extern const device_type V33A;
+extern const device_type V53;
+extern const device_type V53A;
#endif