mirror of
https://github.com/holub/mame
synced 2025-05-19 20:29:09 +03:00
made m_audiocpu optional for those drivers setting value on null, rest will need to be catch with automated tests (nw)
This commit is contained in:
parent
bb84877a2f
commit
fd88028491
@ -56,7 +56,7 @@ public:
|
||||
|
||||
/* devices */
|
||||
required_device<cpu_device> m_maincpu;
|
||||
required_device<cpu_device> m_audiocpu;
|
||||
optional_device<cpu_device> m_audiocpu;
|
||||
|
||||
DECLARE_WRITE8_MEMBER(audio_nmi_enable_w);
|
||||
DECLARE_WRITE8_MEMBER(lnc_w);
|
||||
|
@ -24,7 +24,7 @@ public:
|
||||
|
||||
/* devices */
|
||||
required_device<cpu_device> m_maincpu;
|
||||
required_device<cpu_device> m_audiocpu;
|
||||
optional_device<cpu_device> m_audiocpu;
|
||||
|
||||
UINT8 m_irq_mask;
|
||||
DECLARE_WRITE8_MEMBER(irq_mask_w);
|
||||
|
Loading…
Reference in New Issue
Block a user