summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/jubilee.c
diff options
context:
space:
mode:
author Michael Zapf <michael.zapf@mizapf.de>2012-06-07 20:14:04 +0000
committer Michael Zapf <michael.zapf@mizapf.de>2012-06-07 20:14:04 +0000
commit93a03892728abab8479dd0bc872537d540ff375d (patch)
treedcd25508f7e14de0e3ec1447deccbea8451c8bc0 /src/mame/drivers/jubilee.c
parent531a86f2726e8f5173fe8881fd754d2a2d0d243c (diff)
New TMS9900 and TMS9995 implementation with proper control line handling
and wait state generation. Previous implementation has been renamed to *l.{c,h} and drivers point to the old implementation until they are adapted to the new version. [Michael Zapf]
Diffstat (limited to 'src/mame/drivers/jubilee.c')
-rw-r--r--src/mame/drivers/jubilee.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/jubilee.c b/src/mame/drivers/jubilee.c
index 11ea6521a59..d257a512c05 100644
--- a/src/mame/drivers/jubilee.c
+++ b/src/mame/drivers/jubilee.c
@@ -86,7 +86,7 @@
#define MASTER_CLOCK XTAL_8MHz /* guess */
#include "emu.h"
-#include "cpu/tms9900/tms9900.h"
+#include "cpu/tms9900/tms9900l.h"
#include "video/mc6845.h"
@@ -413,7 +413,7 @@ static const mc6845_interface mc6845_intf =
static MACHINE_CONFIG_START( jubileep, jubilee_state )
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", TMS9980, MASTER_CLOCK/2) /* guess */
+ MCFG_CPU_ADD("maincpu", TMS9980L, MASTER_CLOCK/2) /* guess */
MCFG_CPU_PROGRAM_MAP(jubileep_map)
MCFG_CPU_IO_MAP(jubileep_cru_map)
MCFG_CPU_VBLANK_INT("screen", jubileep_interrupt)