1
0
Fork 0

Ignoring int 17:20 now. Fixes some picture game

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1250
This commit is contained in:
Peter Veenstra 2003-09-17 19:17:35 +00:00
parent a4713efd90
commit a221b69c29

View file

@ -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 <time.h>
#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;
}