Commit 68c78e73 authored by Rein Klazes's avatar Rein Klazes Committed by Alexandre Julliard

Corrected operand sizes for the "enter" instruction.

parent ac514e1a
......@@ -769,7 +769,7 @@ static const struct inst db_inst_table[256] = {
/*c6*/ { "mov", TRUE, BYTE, op2(I, E), 0 },
/*c7*/ { "mov", TRUE, LONG, op2(I, E), 0 },
/*c8*/ { "enter", FALSE, NONE, op2(Ib, Iw), 0 },
/*c8*/ { "enter", FALSE, NONE, op2(Iw, Ib), 0 },
/*c9*/ { "leave", FALSE, NONE, 0, 0 },
/*ca*/ { "lret", FALSE, NONE, op1(Iw), 0 },
/*cb*/ { "lret", FALSE, NONE, 0, 0 },
......
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