summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2014-10-11 07:05:23 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2014-10-11 07:05:23 +0000
commitae413cc03625ac7f38fbd61ba7401235c317642b (patch)
tree70dc9f8135a49c07c4ed3c4b5d34ed9a50b7cede
parent8bed8ef381a2665b26eaa4e87b9a05114e178813 (diff)
fixed ts2068 keyboard, broken since the 0.139 development
cycle, more than 4 years ago. nw. many thanks to Tafoid for the help tracing back the regression :)
-rw-r--r--src/mess/drivers/timex.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mess/drivers/timex.c b/src/mess/drivers/timex.c
index 95ed7f8b729..2221048011e 100644
--- a/src/mess/drivers/timex.c
+++ b/src/mess/drivers/timex.c
@@ -683,6 +683,8 @@ static MACHINE_CONFIG_DERIVED( ts2068, spectrum_128 )
MCFG_CPU_REPLACE("maincpu", Z80, XTAL_14_112MHz/4) /* From Schematic; 3.528 MHz */
MCFG_CPU_PROGRAM_MAP(ts2068_mem)
MCFG_CPU_IO_MAP(ts2068_io)
+ MCFG_CPU_VBLANK_INT_DRIVER("screen", spectrum_state, spec_interrupt)
+ MCFG_QUANTUM_TIME(attotime::from_hz(60))
MCFG_MACHINE_RESET_OVERRIDE(spectrum_state, ts2068 )