summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author S.Z <yz70s@users.noreply.github.com>2018-07-24 11:37:24 +0200
committer GitHub <noreply@github.com>2018-07-24 11:37:24 +0200
commit9f1c61b8df566d081e19908e1a1b57a716a1f5b3 (patch)
tree0f6fd25632ca104299a9f832802eec07f04e5556
parent02f381b958585714d6836d4d717c57065df4d632 (diff)
parentc0848638b639635f71376bdf995b7d40a37f5888 (diff)
Merge pull request #3784 from MoochMcGee/comebaby
comebaby.cpp: Fix CPU model so that it doesn't jump to 0 when it writes to a p6+ msr (nw)
-rw-r--r--src/mame/drivers/comebaby.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/comebaby.cpp b/src/mame/drivers/comebaby.cpp
index 2729e4e236f..65bf27731f4 100644
--- a/src/mame/drivers/comebaby.cpp
+++ b/src/mame/drivers/comebaby.cpp
@@ -238,7 +238,7 @@ INPUT_PORTS_END
MACHINE_CONFIG_START(comebaby_state::comebaby)
/* basic machine hardware */
- MCFG_DEVICE_ADD("maincpu", PENTIUM, (66666666*19)/2) /* Actually a Celeron */
+ MCFG_DEVICE_ADD("maincpu", PENTIUM2, (66666666*19)/2) /* Actually a Celeron */
MCFG_DEVICE_PROGRAM_MAP(comebaby_map)
MCFG_DEVICE_IO_MAP(comebaby_io)