diff --git a/hash/ibm5170_cdrom.xml b/hash/ibm5170_cdrom.xml index 47203640bdd..222057cc506 100644 --- a/hash/ibm5170_cdrom.xml +++ b/hash/ibm5170_cdrom.xml @@ -188,6 +188,24 @@ black screen/hangs when launching a demo play in 640x480 resolution, [8514] ibm8 + + Actua Soccer (OEM v1.29) + 1996 + Gremlin + + + + + + + + + + + + Arcade's Greatest Hits - The Midway Collection 2 @@ -911,6 +929,25 @@ Runs in 16-bit High Color, has [8514] bugs + + + + + Beavis and Butthead - Virtual Stupidity + 1995 + Viacom New Media + + + + + + + + + @@ -2052,6 +2089,22 @@ Untested (and likely unsupported) Spawned Diablo and multi player mode + + + Duke Nukem 3D (shareware v1.1) + 1996 + FormGen + + + + + + + + Dungeons of Kremlin (English, Russia) @@ -2908,6 +2961,8 @@ CD-ROM 4: "DOOM II: Hell on Earth", "Final DOOM", "The Ultimate DOOM", "Wolfenst + + PoiPon (Japan) 1997 @@ -2947,6 +3002,23 @@ CD-ROM 4: "DOOM II: Hell on Earth", "Final DOOM", "The Ultimate DOOM", "Wolfenst + + + + Quake (shareware v1.01) + YEAR + id Software + + + + + + + + @@ -3128,7 +3200,7 @@ Bit of desync when Rosalind Chao starts talking at beginning of an attract cycle - + Silicon Scream (Japan) 1995 @@ -3172,6 +3244,53 @@ Bit of desync when Rosalind Chao starts talking at beginning of an attract cycle + + + SimCity Classic (v2.0) + 1995 + Maxis + + + + + + + + + + + + SimCity 2000 + 1994 + Maxis + + + + + + + + + + + + + + Slam Dunk Typing + 1997 + Creative Wonders + + + + + + + + SkyNET @@ -3230,6 +3349,22 @@ Optional [pc_joy] 4-button joystick, work around by mapping b3 and b4 to player + + + Sturmtruppen: Risiken? (Italy) + 1997 + G&T Multimedia + + + + + + + + + @@ -3512,6 +3647,67 @@ Shows Phantagram logo with bottom red strip (DOS 6.22) + + + + + + + Corel DRAW! 6 + 1995 + Corel Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Uffizi Virtual Museums + 1995 + + + + Opera Multimedia + + + + + + + @@ -4257,4 +4453,6 @@ Shows Phantagram logo with bottom red strip (DOS 6.22) + + diff --git a/src/devices/cpu/i386/i386segs.hxx b/src/devices/cpu/i386/i386segs.hxx index 951b25cd66a..19b5b358894 100644 --- a/src/devices/cpu/i386/i386segs.hxx +++ b/src/devices/cpu/i386/i386segs.hxx @@ -234,7 +234,7 @@ int i386_device::i386_limit_check(int seg, uint32_t offset) if(offset > m_sreg[seg].limit) { logerror("Limit check at 0x%08x failed. Segment %04x, limit %08x, offset %08x\n",m_pc,m_sreg[seg].selector,m_sreg[seg].limit,offset); - machine().debug_break(); + //machine().debug_break(); return 1; } }