diff options
Diffstat (limited to 'src/mess/video/ac1.c')
-rw-r--r-- | src/mess/video/ac1.c | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/src/mess/video/ac1.c b/src/mess/video/ac1.c deleted file mode 100644 index 8af6b695baa..00000000000 --- a/src/mess/video/ac1.c +++ /dev/null @@ -1,61 +0,0 @@ -// license:BSD-3-Clause -// copyright-holders:Miodrag Milanovic -/*************************************************************************** - - AC1 video driver by Miodrag Milanovic - - 15/01/2009 Preliminary driver. - -****************************************************************************/ - -#include "emu.h" -#include "includes/ac1.h" - -#define AC1_VIDEO_MEMORY 0x1000 - -const gfx_layout ac1_charlayout = -{ - 6, 8, /* 6x8 characters */ - 256, /* 256 characters */ - 1, /* 1 bits per pixel */ - {0}, /* no bitplanes; 1 bit per pixel */ - {7, 6, 5, 4, 3, 2}, - {0 * 8, 1 * 8, 2 * 8, 3 * 8, 4 * 8, 5 * 8, 6 * 8, 7 * 8}, - 8*8 /* size of one char */ -}; - -void ac1_state::video_start() -{ -} - -UINT32 ac1_state::screen_update_ac1(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) -{ - int x,y; - address_space &space = m_maincpu->space(AS_PROGRAM); - - for(y = 0; y < 16; y++ ) - { - for(x = 0; x < 64; x++ ) - { - int code = space.read_byte(AC1_VIDEO_MEMORY + x + y*64); - m_gfxdecode->gfx(0)->opaque(bitmap,cliprect, code , 0, 0,0, 63*6-x*6,15*8-y*8); - } - } - return 0; -} - -UINT32 ac1_state::screen_update_ac1_32(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) -{ - int x,y; - address_space &space = m_maincpu->space(AS_PROGRAM); - - for(y = 0; y < 32; y++ ) - { - for(x = 0; x < 64; x++ ) - { - int code = space.read_byte(AC1_VIDEO_MEMORY + x + y*64); - m_gfxdecode->gfx(0)->opaque(bitmap,cliprect, code , 0, 0,0, 63*6-x*6,31*8-y*8); - } - } - return 0; -} |