summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/vcs/compumat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/vcs/compumat.h')
-rw-r--r--src/devices/bus/vcs/compumat.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/devices/bus/vcs/compumat.h b/src/devices/bus/vcs/compumat.h
new file mode 100644
index 00000000000..80f1df069fd
--- /dev/null
+++ b/src/devices/bus/vcs/compumat.h
@@ -0,0 +1,35 @@
+// license:BSD-3-Clause
+// copyright-holders:Fabio Priuli
+#ifndef __VCS_COMPUMAT_H
+#define __VCS_COMPUMAT_H
+
+#include "rom.h"
+
+//**************************************************************************
+// TYPE DEFINITIONS
+//**************************************************************************
+
+// ======================> a26_rom_cm_device
+
+class a26_rom_cm_device : public a26_rom_f6_device
+{
+public:
+ // construction/destruction
+ a26_rom_cm_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+
+ // device-level overrides
+ virtual void device_start();
+ virtual ioport_constructor device_input_ports() const;
+ virtual void device_reset();
+
+ // reading and writing
+ virtual DECLARE_READ8_MEMBER(read_rom);
+
+private:
+};
+
+
+// device type definition
+extern const device_type A26_ROM_COMPUMATE;
+
+#endif