Commit 338dedef authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

krnl386.exe: Implement INT 33h function 15h.

parent 06ce49c8
......@@ -184,6 +184,11 @@ void WINAPI DOSVM_Int33Handler( CONTEXT *context )
FIXME("Define screen region for update\n");
break;
case 0x0015:
TRACE("Get mouse driver state and memory requirements\n");
SET_BX(context, sizeof(mouse_info));
break;
case 0x0021:
TRACE("Software reset\n");
INT33_ResetMouse( context );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment