From a221b69c29871aefef73088dd1ad494178db5783 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Wed, 17 Sep 2003 19:17:35 +0000 Subject: [PATCH] Ignoring int 17:20 now. Fixes some picture game Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1250 --- src/ints/bios.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ints/bios.cpp b/src/ints/bios.cpp index 59447d4a..d04a0e6c 100644 --- a/src/ints/bios.cpp +++ b/src/ints/bios.cpp @@ -15,6 +15,9 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +/* $Id: bios.cpp,v 1.21 2003-09-17 19:17:35 qbix79 Exp $ */ + #include #include "dosbox.h" #include "bios.h" @@ -152,8 +155,11 @@ static Bitu INT17_Handler(void) { case 0x02: /* PRINTER: Get Status */ reg_ah=0; break; + case 0x20: /* Some sort of printerdriver install check*/ + break; default: E_Exit("Unhandled INT 17 call %2X",reg_ah); + }; return CBRET_NONE; }