mirror of
https://github.com/holub/mame
synced 2025-07-02 00:29:37 +03:00
fixed stv (nw)
This commit is contained in:
parent
479c1ef908
commit
a6c56d68a8
@ -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
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user