From 220d61976a7a2e0a56284d2db71042c2819f7334 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Strohh=C3=A4cker?= Date: Mon, 16 Apr 2007 13:25:06 +0000 Subject: [PATCH] don't exit on special fully-nested PIC mode Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2841 --- src/hardware/pic.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hardware/pic.cpp b/src/hardware/pic.cpp index ebe58f01..f7c11ca5 100644 --- a/src/hardware/pic.cpp +++ b/src/hardware/pic.cpp @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: pic.cpp,v 1.39 2007-01-18 14:57:59 c2woody Exp $ */ +/* $Id: pic.cpp,v 1.40 2007-04-16 13:25:06 c2woody Exp $ */ #include @@ -203,7 +203,7 @@ static void write_data(Bitu port,Bitu val,Bitu iolen) { LOG(LOG_PIC,LOG_NORMAL)("%d:ICW 4 %X",port==0x21 ? 0 : 1,val); if ((val&0x01)==0) E_Exit("PIC:ICW4: %x, 8085 mode not handled",val); - if ((val&0x10)!=0) E_Exit("PIC:ICW4: %x, special fully-nested mode not handled",val); + if ((val&0x10)!=0) LOG_MSG("PIC:ICW4: %x, special fully-nested mode not handled",val); if(pic->icw_index++ >= pic->icw_words) pic->icw_index=0; break;