summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/comquest.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/comquest.c')
-rw-r--r--src/mame/video/comquest.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/mame/video/comquest.c b/src/mame/video/comquest.c
new file mode 100644
index 00000000000..cbfb1014fe7
--- /dev/null
+++ b/src/mame/video/comquest.c
@@ -0,0 +1,24 @@
+// license:GPL-2.0+
+// copyright-holders:Peter Trauner
+#include "emu.h"
+
+#include "includes/comquest.h"
+
+void comquest_state::video_start()
+{
+}
+
+UINT32 comquest_state::screen_update_comquest(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+{
+ int x, y, j;
+
+ for (y=0; y<128;y++) {
+ for (x=0, j=0; j<8;j++,x+=8*4) {
+#if 0
+ m_gfxdecode->gfx(0)->opaque(bitmap,0, state->m_data[y][j],0,
+ 0,0,x,y);
+#endif
+ }
+ }
+ return 0;
+}