summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/galeb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/includes/galeb.h')
-rw-r--r--src/mess/includes/galeb.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/mess/includes/galeb.h b/src/mess/includes/galeb.h
new file mode 100644
index 00000000000..23b7404a847
--- /dev/null
+++ b/src/mess/includes/galeb.h
@@ -0,0 +1,30 @@
+/*****************************************************************************
+ *
+ * includes/galeb.h
+ *
+ ****************************************************************************/
+
+#ifndef GALEB_H_
+#define GALEB_H_
+
+
+class galeb_state : public driver_device
+{
+public:
+ galeb_state(const machine_config &mconfig, device_type type, const char *tag)
+ : driver_device(mconfig, type, tag) ,
+ m_video_ram(*this, "video_ram"){ }
+
+ required_shared_ptr<UINT8> m_video_ram;
+ DECLARE_READ8_MEMBER(galeb_keyboard_r);
+};
+
+/*----------- defined in video/galeb.c -----------*/
+
+extern const gfx_layout galeb_charlayout;
+
+extern VIDEO_START( galeb );
+extern SCREEN_UPDATE_IND16( galeb );
+
+
+#endif /* GALEB_H_ */