twincobr.cpp: Remove state-changing postload method that makes no sense now

This commit is contained in:
AJR 2020-12-20 17:48:34 -05:00
parent b8cdf7224c
commit 5b92ad399c
2 changed files with 0 additions and 9 deletions

View File

@ -44,7 +44,6 @@ public:
void init_twincobr();
protected:
virtual void device_post_load() override;
virtual void machine_reset() override;
virtual void video_start() override;
@ -55,7 +54,6 @@ protected:
u32 m_fg_rom_bank;
u32 m_bg_ram_bank;
int m_intenable;
int m_dsp_on;
int m_dsp_bio;
int m_fsharkbt_8741;
int m_dsp_execute;

View File

@ -193,7 +193,6 @@ WRITE_LINE_MEMBER(twincobr_state::int_enable_w)
WRITE_LINE_MEMBER(twincobr_state::dsp_int_w)
{
m_dsp_on = state;
if (state)
{
// assert the INT line to the DSP
@ -211,11 +210,6 @@ WRITE_LINE_MEMBER(twincobr_state::dsp_int_w)
}
}
void twincobr_state::device_post_load()
{
dsp_int_w(m_dsp_on);
}
WRITE_LINE_MEMBER(twincobr_state::coin_counter_1_w)
{
@ -261,7 +255,6 @@ void twincobr_state::machine_reset()
void twincobr_state::driver_savestate()
{
save_item(NAME(m_intenable));
save_item(NAME(m_dsp_on));
save_item(NAME(m_dsp_addr_w));
save_item(NAME(m_main_ram_seg));
save_item(NAME(m_dsp_bio));