mirror of
https://github.com/holub/mame
synced 2025-10-08 17:37:56 +03:00
ti99: Fix segfault caused by listslots
This commit is contained in:
parent
527f5609c1
commit
6b9c7a920a
@ -116,13 +116,8 @@ WRITE_LINE_MEMBER( ti_speech_synthesizer_device::speech_ready )
|
|||||||
}
|
}
|
||||||
|
|
||||||
void ti_speech_synthesizer_device::device_start()
|
void ti_speech_synthesizer_device::device_start()
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void ti_speech_synthesizer_device::device_config_complete()
|
|
||||||
{
|
{
|
||||||
m_vsp = subdevice<cd2501e_device>("speechsyn");
|
m_vsp = subdevice<cd2501e_device>("speechsyn");
|
||||||
|
|
||||||
// Need to configure the speech ROM for inverse bit order
|
// Need to configure the speech ROM for inverse bit order
|
||||||
speechrom_device* mem = subdevice<speechrom_device>("vsm");
|
speechrom_device* mem = subdevice<speechrom_device>("vsm");
|
||||||
mem->set_reverse_bit_order(true);
|
mem->set_reverse_bit_order(true);
|
||||||
|
@ -37,7 +37,6 @@ protected:
|
|||||||
virtual void device_reset(void) override;
|
virtual void device_reset(void) override;
|
||||||
virtual const rom_entry *device_rom_region() const override;
|
virtual const rom_entry *device_rom_region() const override;
|
||||||
virtual machine_config_constructor device_mconfig_additions() const override;
|
virtual machine_config_constructor device_mconfig_additions() const override;
|
||||||
virtual void device_config_complete() override;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
address_space* m_space;
|
address_space* m_space;
|
||||||
|
Loading…
Reference in New Issue
Block a user