Commit 315c4e78 authored by Petr Tesarik's avatar Petr Tesarik Committed by Alexandre Julliard

winedbg: Fix lcall instruction opcode.

parent ef20936c
...@@ -331,7 +331,7 @@ static unsigned be_i386_is_func_call(const void* insn, ADDRESS* callee) ...@@ -331,7 +331,7 @@ static unsigned be_i386_is_func_call(const void* insn, ADDRESS* callee)
ch &= 0x38; ch &= 0x38;
if (ch != 0x10 && ch != 0x18) return FALSE; if (ch != 0x10 && ch != 0x18) return FALSE;
/* fall through */ /* fall through */
case 0x9c: case 0x9a:
case 0xCD: case 0xCD:
WINE_FIXME("Unsupported yet call insn (0x%02x) at %p\n", ch, insn); WINE_FIXME("Unsupported yet call insn (0x%02x) at %p\n", ch, insn);
/* fall through */ /* fall through */
......
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