mirror of
https://github.com/holub/mame
synced 2025-10-08 09:30:17 +03:00
missed file (nw)
This commit is contained in:
parent
d2f28b9ddf
commit
2736de49a8
@ -15,6 +15,7 @@ class saturn_state : public driver_device
|
|||||||
public:
|
public:
|
||||||
saturn_state(const machine_config &mconfig, device_type type, const char *tag)
|
saturn_state(const machine_config &mconfig, device_type type, const char *tag)
|
||||||
: driver_device(mconfig, type, tag),
|
: driver_device(mconfig, type, tag),
|
||||||
|
m_rom(*this, "share6"),
|
||||||
m_workram_l(*this, "workram_l"),
|
m_workram_l(*this, "workram_l"),
|
||||||
m_workram_h(*this, "workram_h"),
|
m_workram_h(*this, "workram_h"),
|
||||||
m_sound_ram(*this, "sound_ram"),
|
m_sound_ram(*this, "sound_ram"),
|
||||||
@ -29,6 +30,7 @@ public:
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
required_shared_ptr<UINT32> m_rom;
|
||||||
required_shared_ptr<UINT32> m_workram_l;
|
required_shared_ptr<UINT32> m_workram_l;
|
||||||
required_shared_ptr<UINT32> m_workram_h;
|
required_shared_ptr<UINT32> m_workram_h;
|
||||||
required_shared_ptr<UINT16> m_sound_ram;
|
required_shared_ptr<UINT16> m_sound_ram;
|
||||||
|
Loading…
Reference in New Issue
Block a user