Add entry for int 2 handler.

This commit is contained in:
Vitaliy Margolen 2005-08-15 09:42:36 +00:00 committed by Alexandre Julliard
parent 640bf7c6e8
commit 131d3f1f90
1 changed files with 1 additions and 0 deletions

View File

@ -715,6 +715,7 @@ DWORD INSTR_EmulateInstruction( EXCEPTION_RECORD *rec, CONTEXT86 *context )
if (offset <= idtr.limit + 1 - (long_op ? 4 : 2))
{
idt[1].LimitLow = 0x100; /* FIXME */
idt[2].LimitLow = 0x11E; /* FIXME */
idt[3].LimitLow = 0x500; /* FIXME */
store_reg( context, instr[1], (BYTE *)&idt + offset, long_op );
context->Eip += prefixlen + len + 1;