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)
This commit is contained in:
S.Z 2018-07-24 11:37:24 +02:00 committed by GitHub
commit 9f1c61b8df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)