summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/ti99_4x.c
diff options
context:
space:
mode:
author Wilbert Pol <wilbertpol@users.noreply.github.com>2015-09-21 22:58:39 +0200
committer Wilbert Pol <wilbertpol@users.noreply.github.com>2015-09-21 22:58:39 +0200
commitcd7ed78f98e43f687748e3e38594aa8738d4690a (patch)
tree169a610dfbcee86140cc62b1e959d022a9010a7a /src/mess/drivers/ti99_4x.c
parentbfb9dd7b34feb95e7c4a8716f94376502b3c5cad (diff)
v9938.c: Fix MT#05622 and MT#05623
Diffstat (limited to 'src/mess/drivers/ti99_4x.c')
-rw-r--r--src/mess/drivers/ti99_4x.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mess/drivers/ti99_4x.c b/src/mess/drivers/ti99_4x.c
index 8980453a0fd..a90dc92aaf2 100644
--- a/src/mess/drivers/ti99_4x.c
+++ b/src/mess/drivers/ti99_4x.c
@@ -122,7 +122,6 @@ public:
// Interrupt triggers
DECLARE_INPUT_CHANGED_MEMBER( load_interrupt );
- TIMER_DEVICE_CALLBACK_MEMBER(ti99_4ev_hblank_interrupt);
private:
void set_keyboard_column(int number, int data);
@@ -1044,11 +1043,6 @@ MACHINE_CONFIG_END
replacing the console video processor.
*************************************************************************/
-TIMER_DEVICE_CALLBACK_MEMBER(ti99_4x_state::ti99_4ev_hblank_interrupt)
-{
- machine().device<v9938_device>(VDP_TAG)->interrupt();
-}
-
static MACHINE_CONFIG_START( ti99_4ev_60hz, ti99_4x_state )
/* CPU */
MCFG_TMS99xx_ADD("maincpu", TMS9900, 3000000, memmap, cru_map)
@@ -1066,7 +1060,6 @@ static MACHINE_CONFIG_START( ti99_4ev_60hz, ti99_4x_state )
// painted. Accordingly, the full set of lines is refreshed at 30 Hz,
// not 60 Hz. This should be fixed in the v9938 emulation.
MCFG_TI_V9938_ADD(VIDEO_SYSTEM_TAG, 30, SCREEN_TAG, 2500, 512+32, (212+28)*2, ti99_4x_state, video_interrupt_in)
- MCFG_TIMER_DRIVER_ADD_SCANLINE("scantimer", ti99_4x_state, ti99_4ev_hblank_interrupt, SCREEN_TAG, 0, 1)
/* Main board */
MCFG_DEVICE_ADD(TMS9901_TAG, TMS9901, 3000000)