summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/atarigen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/atarigen.cpp')
-rw-r--r--src/mame/machine/atarigen.cpp16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/mame/machine/atarigen.cpp b/src/mame/machine/atarigen.cpp
index d050b486cfc..a39ea07db6e 100644
--- a/src/mame/machine/atarigen.cpp
+++ b/src/mame/machine/atarigen.cpp
@@ -342,8 +342,6 @@ atarigen_state::atarigen_state(const machine_config &mconfig, device_type type,
m_maincpu(*this, "maincpu"),
m_gfxdecode(*this, "gfxdecode"),
m_screen(*this, "screen"),
- m_palette(*this, "palette"),
- m_generic_paletteram_16(*this, "paletteram"),
m_slapstic_device(*this, ":slapstic")
{
}
@@ -396,7 +394,7 @@ void atarigen_state::device_timer(emu_timer &timer, device_timer_id id, int para
{
case TID_SCANLINE_INTERRUPT:
{
- scanline_int_gen(*m_maincpu);
+ scanline_int_write_line(1);
screen_device *screen = reinterpret_cast<screen_device *>(ptr);
timer.adjust(screen->frame_period());
break;
@@ -447,18 +445,6 @@ WRITE_LINE_MEMBER(atarigen_state::scanline_int_write_line)
//-------------------------------------------------
-// scanline_int_gen: Standard interrupt routine
-// which sets the scanline interrupt state.
-//-------------------------------------------------
-
-INTERRUPT_GEN_MEMBER(atarigen_state::scanline_int_gen)
-{
- m_scanline_int_state = 1;
- update_interrupts();
-}
-
-
-//-------------------------------------------------
// scanline_int_ack_w: Resets the state of the
// scanline interrupt.
//-------------------------------------------------