Added DOS int 21h function 4452h support (DR-DOS version check).
This commit is contained in:
parent
1cbaad7fba
commit
866c5886e5
|
@ -1728,6 +1728,16 @@ void WINAPI DOS3Call( CONTEXT86 *context )
|
|||
/* not installed */
|
||||
break;
|
||||
|
||||
case 0x52: /* DR-DOS version */
|
||||
/* This is not DR-DOS */
|
||||
|
||||
TRACE("GET DR-DOS VERSION requested");
|
||||
|
||||
AX_reg(context) = 0x0001; /* Invalid function */
|
||||
SET_CFLAG(context); /* Error */
|
||||
SetLastError( ERROR_INVALID_FUNCTION );
|
||||
break;
|
||||
|
||||
default:
|
||||
INT_BARF( context, 0x21 );
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue