mame/src/mess/drivers/mz3500.c
2013-03-23 19:12:07 +00:00

627 lines
18 KiB
C

/***************************************************************************
MZ-3500 (c) 198? Sharp
preliminary driver by Angelo Salese
***************************************************************************/
#include "emu.h"
#include "cpu/z80/z80.h"
//#include "sound/ay8910.h"
#include "video/upd7220.h"
#define MAIN_CLOCK XTAL_8MHz
class mz3500_state : public driver_device
{
public:
mz3500_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_master(*this, "master"),
m_slave(*this, "slave"),
m_hgdc1(*this, "upd7220_chr"),
m_hgdc2(*this, "upd7220_gfx"),
m_video_ram(*this, "video_ram")
{ }
// devices
required_device<cpu_device> m_master;
required_device<cpu_device> m_slave;
required_device<upd7220_device> m_hgdc1;
required_device<upd7220_device> m_hgdc2;
required_shared_ptr<UINT8> m_video_ram;
UINT8 *m_ipl_rom;
UINT8 *m_basic_rom;
UINT8 *m_work_ram;
UINT8 *m_shared_ram;
UINT8 *m_char_rom;
UINT8 m_ma,m_mo,m_ms,m_me2,m_me1;
UINT8 m_crtc[0x10];
DECLARE_READ8_MEMBER(mz3500_master_mem_r);
DECLARE_WRITE8_MEMBER(mz3500_master_mem_w);
DECLARE_READ8_MEMBER(mz3500_ipl_r);
DECLARE_READ8_MEMBER(mz3500_basic_r);
DECLARE_READ8_MEMBER(mz3500_work_ram_r);
DECLARE_WRITE8_MEMBER(mz3500_work_ram_w);
DECLARE_READ8_MEMBER(mz3500_shared_ram_r);
DECLARE_WRITE8_MEMBER(mz3500_shared_ram_w);
DECLARE_READ8_MEMBER(mz3500_io_r);
DECLARE_WRITE8_MEMBER(mz3500_io_w);
DECLARE_WRITE8_MEMBER(mz3500_crtc_w);
// screen updates
UINT32 screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
protected:
// driver_device overrides
virtual void machine_start();
virtual void machine_reset();
virtual void video_start();
virtual void palette_init();
};
void mz3500_state::video_start()
{
}
/*
CRTC regs
[0]
---- -x-- "Choice of whether attribute or cursor be put on the frame that displayed on CRT2" (whatever that means ...)
---- --x- CRT2 output
---- ---x CRT1 output
[1]
---- -GRB CRT1 color output
[2]
---- -GRB CRT2 color output
[3]
---- -GRB background color output
[4]
---- --x- border color mode in effect
---- ---x color mode
[5]
---- --x- width setting (0: 40 chars, 1: 80 chars)
---- ---x data size for graphics RAM (0: 8 bits, 1: 16 bits)
[6]
---- -x-- "Connection of graphic GDC"
---- --x- "Connection of the 96K bytes VRAM"
---- ---x "Connection of a 400 raster CRT"
[7]
---- ---x 0: 25 lines, 1: 20 lines display
[d]
(mirror of [5]?)
*/
static UPD7220_DISPLAY_PIXELS( hgdc_display_pixels )
{
// ...
}
static UPD7220_DRAW_TEXT_LINE( hgdc_draw_text )
{
mz3500_state *state = device->machine().driver_data<mz3500_state>();
const rgb_t *palette = palette_entry_list_raw(bitmap.palette());
int x;
int xi,yi;
int tile;
int attr;
UINT8 tile_data;
UINT8 width80;
UINT8 char_size;
UINT8 hires;
// popmessage("%02x",state->m_crtc[6]);
width80 = (state->m_crtc[5] & 2) >> 1;
hires = (state->m_crtc[6] & 1);
char_size = (hires) ? 16 : 8;
for( x = 0; x < pitch; x++ )
{
tile = (state->m_video_ram[((addr+x)*2) & 0x1fff] & 0xff);
attr = (state->m_video_ram[((addr+x)*2+1) & 0x3ffff] & 0x0f);
//if(hires)
// tile <<= 1;
for( yi = 0; yi < lr; yi++)
{
tile_data = state->m_char_rom[((tile*16+yi) & 0xfff) | (hires*0x1000)];
for( xi = 0; xi < 8; xi++)
{
int res_x,res_y;
int pen;
/* TODO: color attribute needs double check */
if(yi >= char_size)
pen = -1;
else
{
if(state->m_crtc[4] & 1)
pen = (tile_data >> (7-xi)) & 1 ? (attr >> 1) : -1;
else
pen = (tile_data >> (7-xi)) & 1 ? 7 : -1;
}
res_x = x * 8 + xi;
res_y = y * lr + yi;
if(pen != -1)
{
if(!width80)
{
bitmap.pix32(res_y, res_x*2+0) = palette[pen];
bitmap.pix32(res_y, res_x*2+1) = palette[pen];
}
else
bitmap.pix32(res_y, res_x) = palette[pen];
}
}
}
}
}
UINT32 mz3500_state::screen_update( screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect )
{
bitmap.fill(machine().pens[(m_crtc[4] & 2) ? m_crtc[3] & 7 : 0], cliprect);
/* graphics */
m_hgdc2->screen_update(screen, bitmap, cliprect);
m_hgdc1->screen_update(screen, bitmap, cliprect);
return 0;
}
static UPD7220_INTERFACE( hgdc_1_intf )
{
"screen",
NULL,
hgdc_draw_text,
DEVCB_NULL,
DEVCB_DEVICE_LINE_MEMBER("upd7220_gfx", upd7220_device, ext_sync_w),
DEVCB_NULL
};
static UPD7220_INTERFACE( hgdc_2_intf )
{
"screen",
hgdc_display_pixels,
NULL,
DEVCB_NULL,
DEVCB_NULL,
DEVCB_NULL
};
READ8_MEMBER(mz3500_state::mz3500_ipl_r)
{
return m_ipl_rom[offset];
}
READ8_MEMBER(mz3500_state::mz3500_basic_r)
{
return m_basic_rom[offset];
}
READ8_MEMBER(mz3500_state::mz3500_work_ram_r)
{
return m_work_ram[offset];
}
WRITE8_MEMBER(mz3500_state::mz3500_work_ram_w)
{
m_work_ram[offset] = data;
}
READ8_MEMBER(mz3500_state::mz3500_master_mem_r)
{
if(m_ms == 0)
{
if((offset & 0xe000) == 0x0000) { return mz3500_ipl_r(space,(offset & 0xfff) | 0x1000); }
if((offset & 0xe000) == 0x2000) { return mz3500_basic_r(space,(offset & 0x1fff) | 0x2000); }
if((offset & 0xc000) == 0x4000) { return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x4000); }
if((offset & 0xc000) == 0x8000) { return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x8000); }
if((offset & 0xc000) == 0xc000)
{
if(m_ma == 0x0) { return mz3500_work_ram_r(space,(offset & 0x3fff) | 0xc000); }
if(m_ma == 0x1) { return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x0000); }
if(m_ma == 0xf) { return mz3500_shared_ram_r(space,(offset & 0x7ff)); }
}
printf("Error: read with unmapped memory bank offset %04x MS %02x MA %02x\n",offset,m_ms,m_ma);
}
else if(m_ms == 1)
{
return ((offset & 0xf800) == 0xf800) ? mz3500_shared_ram_r(space,(offset & 0x7ff)) : mz3500_work_ram_r(space,offset);
}
else if(m_ms == 2) // ROM based BASIC
{
if((offset & 0xe000) == 0x0000) { return mz3500_basic_r(space,offset & 0x1fff); }
if((offset & 0xe000) == 0x2000)
{
switch(m_mo)
{
case 0x0: return mz3500_basic_r(space,(offset & 0x1fff) | 0x2000);
case 0x1: return mz3500_basic_r(space,(offset & 0x1fff) | 0x4000);
case 0x2: return mz3500_basic_r(space,(offset & 0x1fff) | 0x6000);
}
printf("Error: read with unmapped memory bank offset %04x MS %02x MO %02x\n",offset,m_ms,m_mo);
}
if((offset & 0xc000) == 0x4000) { return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x4000); }
if((offset & 0xc000) == 0x8000) { return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x8000); }
if((offset & 0xc000) == 0xc000)
{
switch(m_ma)
{
case 0x0: return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x0c000);
case 0x1: return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x00000);
case 0x2: return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x10000);
case 0x3: return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x14000);
case 0x4: return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x18000);
case 0x5: return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x1c000);
case 0x6: return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x20000);
case 0x7: return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x24000);
case 0x8: return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x28000);
case 0x9: return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x2c000);
case 0xa: return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x30000);
case 0xb: return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x34000);
case 0xc: return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x38000);
case 0xd: return mz3500_work_ram_r(space,(offset & 0x3fff) | 0x3c000);
case 0xf: return mz3500_shared_ram_r(space,(offset & 0x7ff));
}
}
printf("Error: read with unmapped memory bank offset %04x MS %02x MA %02x\n",offset,m_ms,m_ma);
}
return 0xff;
}
WRITE8_MEMBER(mz3500_state::mz3500_master_mem_w)
{
if(m_ms == 0) // Initialize State
{
if((offset & 0xc000) == 0x4000) { mz3500_work_ram_w(space,(offset & 0x3fff) | 0x4000,data); return; }
if((offset & 0xc000) == 0x8000) { mz3500_work_ram_w(space,(offset & 0x3fff) | 0x8000,data); return; }
if((offset & 0xc000) == 0xc000)
{
if(m_ma == 0x0) { mz3500_work_ram_w(space,(offset & 0x3fff) | 0xc000,data); return; }
if(m_ma == 0x1) { mz3500_work_ram_w(space,(offset & 0x3fff) | 0x0000,data); return; }
if(m_ma == 0xf) { mz3500_shared_ram_w(space,(offset & 0x7ff),data); return; }
}
printf("Error: write with unmapped memory bank offset %04x data %02x MS %02x MA %02x\n",offset,data,m_ms,m_ma);
}
else if(m_ms == 1) // System Loading & CP/M
{
if((offset & 0xf800) == 0xf800)
mz3500_shared_ram_w(space,(offset & 0x7ff),data);
else
mz3500_work_ram_w(space,offset,data);
return;
}
else if(m_ms == 2) // ROM based BASIC
{
if((offset & 0xc000) == 0x4000) { mz3500_work_ram_w(space,(offset & 0x3fff) | 0x4000,data); return; }
if((offset & 0xc000) == 0x8000) { mz3500_work_ram_w(space,(offset & 0x3fff) | 0x8000,data); return; }
if((offset & 0xc000) == 0xc000)
{
switch(m_ma)
{
case 0x0: mz3500_work_ram_w(space,(offset & 0x3fff) | 0x0c000,data); return;
case 0x1: mz3500_work_ram_w(space,(offset & 0x3fff) | 0x00000,data); return;
case 0x2: mz3500_work_ram_w(space,(offset & 0x3fff) | 0x10000,data); return;
case 0x3: mz3500_work_ram_w(space,(offset & 0x3fff) | 0x14000,data); return;
case 0x4: mz3500_work_ram_w(space,(offset & 0x3fff) | 0x18000,data); return;
case 0x5: mz3500_work_ram_w(space,(offset & 0x3fff) | 0x1c000,data); return;
case 0x6: mz3500_work_ram_w(space,(offset & 0x3fff) | 0x20000,data); return;
case 0x7: mz3500_work_ram_w(space,(offset & 0x3fff) | 0x24000,data); return;
case 0x8: mz3500_work_ram_w(space,(offset & 0x3fff) | 0x28000,data); return;
case 0x9: mz3500_work_ram_w(space,(offset & 0x3fff) | 0x2c000,data); return;
case 0xa: mz3500_work_ram_w(space,(offset & 0x3fff) | 0x30000,data); return;
case 0xb: mz3500_work_ram_w(space,(offset & 0x3fff) | 0x34000,data); return;
case 0xc: mz3500_work_ram_w(space,(offset & 0x3fff) | 0x38000,data); return;
case 0xd: mz3500_work_ram_w(space,(offset & 0x3fff) | 0x3c000,data); return;
case 0xf: mz3500_shared_ram_w(space,(offset & 0x7ff),data); return;
}
}
printf("Error: write with unmapped memory bank offset %04x data %02x MS %02x MA %02x\n",offset,data,m_ms,m_ma);
}
}
READ8_MEMBER(mz3500_state::mz3500_shared_ram_r)
{
return m_shared_ram[offset];
}
WRITE8_MEMBER(mz3500_state::mz3500_shared_ram_w)
{
m_shared_ram[offset] = data;
}
READ8_MEMBER(mz3500_state::mz3500_io_r)
{
/*
[2]
---x xxx- system assign switch
---- ---x "SEC" FD assign
[3]
xxx- ---- FD assign
---x ---- slave CPU Ready signal
---- x--- slave CPU ack signal
---- -xxx interrupt status
*/
return 0;
}
WRITE8_MEMBER(mz3500_state::mz3500_io_w)
{
/*
[0]
---- --x- SRQ bus request from master to slave
---- ---x E1
[1]
x--- ---- slave reset signal
---- --xx memory system define
[2]
xxxx ---- ma bank (memory 0xc000-0xffff)
---- -xxx mo bank (memory 0x2000-0x3fff)
[3]
x--- ---- me2 bank (memory 0x8000-0xbfff)
-x-- ---- me1 bank (memory 0x4000-0x7fff)
*/
switch(offset)
{
case 1:
m_ms = data & 3;
break;
case 2:
m_ma = (data & 0xf0) >> 4;
m_mo = (data & 0x07);
break;
case 3:
m_me2 = (data & 0x80) >> 7;
m_me1 = (data & 0x40) >> 6;
break;
}
}
WRITE8_MEMBER(mz3500_state::mz3500_crtc_w)
{
if(offset & 8)
{
if(offset == 0xd)
m_crtc[offset & 7] = data;
else
printf("CRTC register access %02x\n",offset); // probably just a mirror, but who knows ...
}
else
m_crtc[offset] = data;
}
static ADDRESS_MAP_START( mz3500_master_map, AS_PROGRAM, 8, mz3500_state )
AM_RANGE(0x0000, 0xffff) AM_READWRITE(mz3500_master_mem_r,mz3500_master_mem_w)
ADDRESS_MAP_END
static ADDRESS_MAP_START( mz3500_master_io, AS_IO, 8, mz3500_state )
ADDRESS_MAP_GLOBAL_MASK(0xff)
// AM_RANGE(0xe4, 0xe7) SFD upd765
// AM_RANGE(0xe8, 0xeb) SFD I/O port and DMAC chip select
// AM_RANGE(0xec, 0xef) irq signal from slave to master CPU
// AM_RANGE(0xf4, 0xf7) MFD upd765
// AM_RANGE(0xf8, 0xfb) MFD I/O port
AM_RANGE(0xf8, 0xf8) AM_READNOP // TODO
AM_RANGE(0xfc, 0xff) AM_READWRITE(mz3500_io_r,mz3500_io_w) // memory mapper
ADDRESS_MAP_END
static ADDRESS_MAP_START( mz3500_slave_map, AS_PROGRAM, 8, mz3500_state )
AM_RANGE(0x0000, 0x1fff) AM_ROM AM_REGION("ipl", 0)
AM_RANGE(0x2000, 0x27ff) AM_READWRITE(mz3500_shared_ram_r, mz3500_shared_ram_w)
AM_RANGE(0x4000, 0x5fff) AM_RAM
ADDRESS_MAP_END
static ADDRESS_MAP_START( mz3500_slave_io, AS_IO, 8, mz3500_state )
ADDRESS_MAP_GLOBAL_MASK(0xff)
// AM_RANGE(0x00, 0x0f) f/f and irq to master CPU
// AM_RANGE(0x10, 0x1f) i8251
// AM_RANGE(0x20, 0x2f) pit8253
// AM_RANGE(0x30, 0x3f) i8255
// AM_RANGE(0x40, 0x4f) 8-bit input port
AM_RANGE(0x50, 0x5f) AM_RAM_WRITE(mz3500_crtc_w)
AM_RANGE(0x60, 0x61) AM_DEVREADWRITE("upd7220_gfx", upd7220_device, read, write)
AM_RANGE(0x70, 0x71) AM_DEVREADWRITE("upd7220_chr", upd7220_device, read, write)
ADDRESS_MAP_END
static INPUT_PORTS_START( mz3500 )
/* dummy active high structure */
PORT_START("SYSA")
PORT_DIPNAME( 0x01, 0x00, "SYSA" )
PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
PORT_DIPSETTING( 0x01, DEF_STR( On ) )
PORT_DIPNAME( 0x02, 0x00, DEF_STR( Unknown ) )
PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
PORT_DIPSETTING( 0x02, DEF_STR( On ) )
PORT_DIPNAME( 0x04, 0x00, DEF_STR( Unknown ) )
PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
PORT_DIPSETTING( 0x04, DEF_STR( On ) )
PORT_DIPNAME( 0x08, 0x00, DEF_STR( Unknown ) )
PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
PORT_DIPSETTING( 0x08, DEF_STR( On ) )
PORT_DIPNAME( 0x10, 0x00, DEF_STR( Unknown ) )
PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
PORT_DIPSETTING( 0x10, DEF_STR( On ) )
PORT_DIPNAME( 0x20, 0x00, DEF_STR( Unknown ) )
PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
PORT_DIPSETTING( 0x20, DEF_STR( On ) )
PORT_DIPNAME( 0x40, 0x00, DEF_STR( Unknown ) )
PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
PORT_DIPSETTING( 0x40, DEF_STR( On ) )
PORT_DIPNAME( 0x80, 0x00, DEF_STR( Unknown ) )
PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
PORT_DIPSETTING( 0x80, DEF_STR( On ) )
/* dummy active low structure */
PORT_START("DSWA")
PORT_DIPNAME( 0x01, 0x01, "DSWA" )
PORT_DIPSETTING( 0x01, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x02, 0x02, DEF_STR( Unknown ) )
PORT_DIPSETTING( 0x02, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x04, 0x04, DEF_STR( Unknown ) )
PORT_DIPSETTING( 0x04, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x08, 0x08, DEF_STR( Unknown ) )
PORT_DIPSETTING( 0x08, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x10, 0x10, DEF_STR( Unknown ) )
PORT_DIPSETTING( 0x10, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x20, 0x20, DEF_STR( Unknown ) )
PORT_DIPSETTING( 0x20, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x40, 0x40, DEF_STR( Unknown ) )
PORT_DIPSETTING( 0x40, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x80, 0x80, DEF_STR( Unknown ) )
PORT_DIPSETTING( 0x80, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
INPUT_PORTS_END
static const gfx_layout charlayout_8x8 =
{
8,8,
0x100,
1,
{ RGN_FRAC(0,1) },
{ 0, 1, 2, 3, 4, 5, 6, 7 },
{ 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, 7*8 },
8*16
};
static const gfx_layout charlayout_8x16 =
{
8,16,
0x100,
1,
{ RGN_FRAC(0,1) },
{ 0, 1, 2, 3, 4, 5, 6, 7 },
{ STEP16(0,8) },
8*16
};
static GFXDECODE_START( mz3500 )
GFXDECODE_ENTRY( "gfx1", 0x0000, charlayout_8x8, 0, 1 )
GFXDECODE_ENTRY( "gfx1", 0x0008, charlayout_8x8, 0, 1 )
GFXDECODE_ENTRY( "gfx1", 0x1000, charlayout_8x16, 0, 1 )
GFXDECODE_END
void mz3500_state::machine_start()
{
m_ipl_rom = memregion("ipl")->base();
m_basic_rom = memregion("basic")->base();
m_char_rom = memregion("gfx1")->base();
m_work_ram = auto_alloc_array_clear(machine(), UINT8, 0x40000);
m_shared_ram = auto_alloc_array_clear(machine(), UINT8, 0x800);
}
void mz3500_state::machine_reset()
{
/* init memory bank states */
m_ms = 0;
m_ma = 0;
m_mo = 0;
m_me1 = 0;
m_me2 = 0;
//m_slave->set_input_line(INPUT_LINE_RESET, ASSERT_LINE);
}
void mz3500_state::palette_init()
{
int i;
for(i=0;i<8;i++)
palette_set_color_rgb(machine(), i,pal1bit((i >> 1) & 1),pal1bit(i >> 2),pal1bit((i >> 0) & 1));
}
static ADDRESS_MAP_START( upd7220_1_map, AS_0, 8, mz3500_state )
ADDRESS_MAP_GLOBAL_MASK(0x1fff)
AM_RANGE(0x00000, 0x1fff) AM_RAM AM_SHARE("video_ram")
ADDRESS_MAP_END
static ADDRESS_MAP_START( upd7220_2_map, AS_0, 8, mz3500_state )
AM_RANGE(0x00000, 0x3ffff) AM_RAM // AM_SHARE("video_ram_2")
ADDRESS_MAP_END
/* TODO: clocks */
static MACHINE_CONFIG_START( mz3500, mz3500_state )
/* basic machine hardware */
MCFG_CPU_ADD("master",Z80,MAIN_CLOCK/2)
MCFG_CPU_PROGRAM_MAP(mz3500_master_map)
MCFG_CPU_IO_MAP(mz3500_master_io)
MCFG_CPU_ADD("slave",Z80,MAIN_CLOCK/2)
MCFG_CPU_PROGRAM_MAP(mz3500_slave_map)
MCFG_CPU_IO_MAP(mz3500_slave_io)
MCFG_UPD7220_ADD("upd7220_chr", MAIN_CLOCK/5, hgdc_1_intf, upd7220_1_map)
MCFG_UPD7220_ADD("upd7220_gfx", MAIN_CLOCK/5, hgdc_2_intf, upd7220_2_map)
/* video hardware */
MCFG_SCREEN_ADD("screen", RASTER)
MCFG_SCREEN_REFRESH_RATE(60)
MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500))
MCFG_SCREEN_UPDATE_DRIVER(mz3500_state, screen_update)
MCFG_SCREEN_SIZE(32*8, 32*8)
MCFG_SCREEN_VISIBLE_AREA(0*8, 32*8-1, 0*8, 32*8-1)
MCFG_GFXDECODE(mz3500)
MCFG_PALETTE_LENGTH(8)
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")
// MCFG_SOUND_ADD("aysnd", AY8910, MAIN_CLOCK/4)
// MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.30)
MACHINE_CONFIG_END
/***************************************************************************
Game driver(s)
***************************************************************************/
ROM_START( mz3500 )
ROM_REGION( 0x2000, "ipl", ROMREGION_ERASE00 )
ROM_LOAD( "mz-3500_ipl-rom_2-0a_m5l2764k.bin", 0x000000, 0x002000, CRC(119708b9) SHA1(de81979608ba6ab76f09088a92bfd1a5bc42530e) )
ROM_REGION( 0x8000, "basic", ROMREGION_ERASE00 )
ROM_LOAD( "basic.rom", 0x00000, 0x8000, NO_DUMP )
ROM_REGION( 0x2000, "gfx1", ROMREGION_ERASE00 )
ROM_LOAD( "mz-3500_cg-rom_2-b_m5l2764k.bin", 0x000000, 0x002000, CRC(29f2f80a) SHA1(64b307cd9de5a3327e3ec9f3d0d6b3485706f436) )
ROM_END
GAME( 198?, mz3500, 0, mz3500, mz3500, driver_device, 0, ROT0, "Sharp", "MZ-3500", GAME_IS_SKELETON )