From 3a3df086d57f184bae7e6c214e934114d1afe920 Mon Sep 17 00:00:00 2001 From: Wilbert Pol Date: Sat, 3 Nov 2012 11:25:44 +0000 Subject: [PATCH] (MESS) merlin.c: Small documentation update (nw) --- src/mess/drivers/merlin.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/mess/drivers/merlin.c b/src/mess/drivers/merlin.c index d138fc409db..9016ab73cd0 100644 --- a/src/mess/drivers/merlin.c +++ b/src/mess/drivers/merlin.c @@ -62,23 +62,23 @@ INPUT_PORTS_END The keypad is a 4*4 matrix, connected like so: +----+ +----+ +----+ +----+ -K1 o---| R0 |--| R1 |--| R2 |--| R3 | +O0 o---| R0 |--| R1 |--| R2 |--| R3 | +----+ +----+ +----+ +----+ | | | | +----+ +----+ +----+ +----+ -K2 o---| R4 |--| R5 |--| R6 |--| R7 | +O1 o---| R4 |--| R5 |--| R6 |--| R7 | +----+ +----+ +----+ +----+ | | | | +----+ +----+ +----+ +----+ -K4 o---| R8 |--| R9 |--|R10 |--| SG | +O2 o---| R8 |--| R9 |--|R10 |--| SG | +----+ +----+ +----+ +----+ | | | | | +----+ +----+ +----+ -K8 o------+----| CT |--| NG |--| HM | +O3 o------+----| CT |--| NG |--| HM | | +----+ +----+ +----+ | | | | o o o o - O0 O1 O3 O2 + K1 K2 K8 K4 SG = same game, CT = comp turn, NG = new game, HM = hit me */ @@ -183,7 +183,7 @@ static const tms0980_config merlin_tms0980_config = static MACHINE_CONFIG_START( merlin, merlin_state ) - MCFG_CPU_ADD( "maincpu", TMS1100, 500000 ) /* Clock is wrong */ + MCFG_CPU_ADD( "maincpu", TMS1100, 500000 ) /* Clock may be wrong */ MCFG_CPU_CONFIG( merlin_tms0980_config ) MCFG_DEFAULT_LAYOUT(layout_merlin)