mirror of
https://github.com/holub/mame
synced 2025-06-22 20:38:50 +03:00
Fix some but not all validation errors from 2fedd39d2b
(nw)
This commit is contained in:
parent
3f5b0d66ae
commit
b7422d2618
@ -393,7 +393,7 @@ galaxian_sound_device::galaxian_sound_device(const machine_config &mconfig, cons
|
||||
: device_t(mconfig, GALAXIAN, tag, owner, clock)
|
||||
, device_sound_interface(mconfig, *this)
|
||||
, m_lfo_val(0)
|
||||
, m_discrete(*this, GAL_AUDIO)
|
||||
, m_discrete(*this, "^" GAL_AUDIO)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -2668,8 +2668,9 @@ void cclimber_state::init_toprollr()
|
||||
{
|
||||
m_opcodes = std::make_unique<uint8_t[]>(0x6000*3);
|
||||
|
||||
m_encrypted_cpu->set_region_p(memregion("user1")->base());
|
||||
m_encrypted_cpu->set_decrypted_p(m_opcodes.get());
|
||||
segacrpt_z80_device &cpu = downcast<segacrpt_z80_device &>(*m_maincpu);
|
||||
cpu.set_region_p(memregion("user1")->base());
|
||||
cpu.set_decrypted_p(m_opcodes.get());
|
||||
|
||||
membank("bank1")->configure_entries(0, 3, memregion("user1")->base(), 0x6000);
|
||||
membank("bank1d")->configure_entries(0, 3, m_opcodes.get(), 0x6000);
|
||||
|
@ -12,7 +12,6 @@ public:
|
||||
: driver_device(mconfig, type, tag),
|
||||
m_maincpu(*this, "maincpu"),
|
||||
m_audiocpu(*this, "audiocpu"),
|
||||
m_encrypted_cpu(*this, "maincpu"),
|
||||
m_gfxdecode(*this, "gfxdecode"),
|
||||
m_palette(*this, "palette"),
|
||||
m_mainlatch(*this, "mainlatch"),
|
||||
@ -31,7 +30,6 @@ public:
|
||||
|
||||
required_device<cpu_device> m_maincpu;
|
||||
optional_device<cpu_device> m_audiocpu;
|
||||
optional_device<segacrpt_z80_device> m_encrypted_cpu;
|
||||
required_device<gfxdecode_device> m_gfxdecode;
|
||||
required_device<palette_device> m_palette;
|
||||
required_device<ls259_device> m_mainlatch;
|
||||
|
Loading…
Reference in New Issue
Block a user