Skip to content
Snippets Groups Projects
Commit 15aedbc6 authored by Jess Haas's avatar Jess Haas Committed by Alexandre Julliard
Browse files

Added stub for int2f 4b.

parent d604b4bd
No related branches found
No related tags found
No related merge requests found
......@@ -173,6 +173,20 @@ void WINAPI INT_Int2fHandler( CONTEXT *context )
INT_BARF( context, 0x2f );
}
break;
case 0x4b:
switch(AL_reg(context))
{
case 0x01:
case 0x02:
case 0x03:
case 0x04:
case 0x05:
FIXME(int,"Task Switcher - not implemented\n");
break;
default:
INT_BARF( context, 0x2f );
}
break;
case 0x56: /* INTERLNK */
switch(AL_reg(context))
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment