fixed stv (nw)

This commit is contained in:
smf- 2013-02-22 19:31:11 +00:00
parent 479c1ef908
commit a6c56d68a8
2 changed files with 8 additions and 2 deletions

View File

@ -929,7 +929,7 @@ static ADDRESS_MAP_START( sound_mem, AS_PROGRAM, 16, stv_state )
AM_RANGE(0x100000, 0x100fff) AM_DEVREADWRITE_LEGACY("scsp", scsp_r, scsp_w)
ADDRESS_MAP_END
static MACHINE_CONFIG_START( stv, saturn_state )
static MACHINE_CONFIG_START( stv, stv_state )
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", SH2, MASTER_CLOCK_352/2) // 28.6364 MHz

View File

@ -14,7 +14,8 @@ public:
m_workram_h(*this, "workram_h"),
m_sound_ram(*this, "sound_ram"),
m_fake_comms(*this, "fake")
{ }
{
}
required_shared_ptr<UINT32> m_workram_l;
required_shared_ptr<UINT32> m_workram_h;
@ -648,6 +649,11 @@ public:
class stv_state : public saturn_state
{
public:
stv_state(const machine_config &mconfig, device_type type, const char *tag)
: saturn_state(mconfig, type, tag)
{
}
DECLARE_DRIVER_INIT(astrass);
DECLARE_DRIVER_INIT(batmanfr);
DECLARE_DRIVER_INIT(finlarch);