summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/comquest.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/comquest.h')
-rw-r--r--src/mame/includes/comquest.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/mame/includes/comquest.h b/src/mame/includes/comquest.h
new file mode 100644
index 00000000000..5b36a3efefe
--- /dev/null
+++ b/src/mame/includes/comquest.h
@@ -0,0 +1,34 @@
+// license:GPL-2.0+
+// copyright-holders:Peter Trauner
+/*****************************************************************************
+ *
+ * includes/comquest.h
+ *
+ ****************************************************************************/
+
+#ifndef COMQUEST_H_
+#define COMQUEST_H_
+
+
+class comquest_state : public driver_device
+{
+public:
+ comquest_state(const machine_config &mconfig, device_type type, const char *tag)
+ : driver_device(mconfig, type, tag),
+ m_maincpu(*this, "maincpu") { }
+
+ UINT8 m_data[128][8];
+ void *m_timer;
+ int m_line;
+ int m_dma_activ;
+ int m_state;
+ int m_count;
+ DECLARE_READ8_MEMBER(comquest_read);
+ DECLARE_WRITE8_MEMBER(comquest_write);
+ virtual void machine_reset();
+ virtual void video_start();
+ UINT32 screen_update_comquest(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ required_device<cpu_device> m_maincpu;
+};
+
+#endif /* COMQUEST_H_ */