ti99: Fix segfault caused by listslots

This commit is contained in:
Michael Zapf 2016-04-12 21:22:46 +02:00
parent 527f5609c1
commit 6b9c7a920a
2 changed files with 0 additions and 6 deletions

View File

@ -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_config_complete()
{
m_vsp = subdevice<cd2501e_device>("speechsyn");
// Need to configure the speech ROM for inverse bit order
speechrom_device* mem = subdevice<speechrom_device>("vsm");
mem->set_reverse_bit_order(true);

View File

@ -37,7 +37,6 @@ protected:
virtual void device_reset(void) override;
virtual const rom_entry *device_rom_region() const override;
virtual machine_config_constructor device_mconfig_additions() const override;
virtual void device_config_complete() override;
private:
address_space* m_space;