1
0
Fork 0

Remove error exit for unknown functions of INT 17h. Fixes a DOS shell program.

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@4045
This commit is contained in:
ripsaw8080 2017-09-10 11:20:35 +00:00
parent ed8c16e69a
commit 42a0b61a65

View file

@ -591,10 +591,6 @@ 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;
}