Commit 9ea5d41c authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

krnl386: Remove the unused relay stub which enables interrupts.

This was used by DOS IRQ handling, removed in 5ec54495. Signed-off-by: 's avatarZebediah Figura <zfigura@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 17e2d5c1
......@@ -307,7 +307,6 @@ static void DOSMEM_InitSegments(void)
{
0xca, 0x04, 0x00, /* 16-bit far return and pop 4 bytes (relay void* arg) */
0xcd, 0x31, /* int 31 */
0xfb, 0x66, 0xcb /* sti and 32-bit far return */
};
/*
......@@ -332,7 +331,6 @@ static void DOSMEM_InitSegments(void)
/*
* PM / offset 0: Stub where __wine_call_from_16_regs returns.
* PM / offset 3: Stub which swaps back to 32-bit application code/stack.
* PM / offset 5: Stub which enables interrupts
*/
relay_code_sel = GLOBAL_Alloc( GMEM_FIXED, sizeof(relay), 0, LDT_FLAGS_CODE );
ptr = GlobalLock16( relay_code_sel );
......
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