summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/cortex.c
diff options
context:
space:
mode:
author Michael Zapf <michael.zapf@mizapf.de>2014-03-21 13:23:49 +0000
committer Michael Zapf <michael.zapf@mizapf.de>2014-03-21 13:23:49 +0000
commit28ccff182ebaae348545ba3b45a1b71abb6fdd98 (patch)
treed763fb2a54f88640c6e6ba3de8c4fe6171478fd4 /src/mess/drivers/cortex.c
parentcac7437f8ed1f75927ddbfa944a8eddd832fefbb (diff)
(MESS) TMS99xx users adapted to use devcb2. (nw)
Diffstat (limited to 'src/mess/drivers/cortex.c')
-rw-r--r--src/mess/drivers/cortex.c15
1 files changed, 3 insertions, 12 deletions
diff --git a/src/mess/drivers/cortex.c b/src/mess/drivers/cortex.c
index 04b46221585..fa9c06785b2 100644
--- a/src/mess/drivers/cortex.c
+++ b/src/mess/drivers/cortex.c
@@ -75,17 +75,6 @@ void cortex_state::machine_reset()
m_maincpu->set_ready(ASSERT_LINE);
}
-static TMS9995_CONFIG( cpuconf95 )
-{
- DEVCB_NULL, // external op
- DEVCB_NULL, // Instruction acquisition
- DEVCB_NULL, // clock out
- DEVCB_NULL, // HOLDA
- DEVCB_NULL, // DBIN
- INTERNAL_RAM, // use internal RAM
- NO_OVERFLOW_INT // The generally available versions of TMS9995 have a deactivated overflow interrupt
-};
-
static TMS9928A_INTERFACE(cortex_tms9929a_interface)
{
0x4000, // vram size
@@ -95,7 +84,9 @@ static TMS9928A_INTERFACE(cortex_tms9929a_interface)
static MACHINE_CONFIG_START( cortex, cortex_state )
/* basic machine hardware */
/* TMS9995 CPU @ 12.0 MHz */
- MCFG_TMS99xx_ADD("maincpu", TMS9995, 12000000, cortex_mem, cortex_io, cpuconf95)
+ // Standard variant, no overflow int
+ // No lines connected yet
+ MCFG_TMS99xx_ADD("maincpu", TMS9995, 12000000, cortex_mem, cortex_io)
/* video hardware */
MCFG_TMS9928A_ADD( "tms9928a", TMS9929A, cortex_tms9929a_interface )