Module: wine Branch: refs/heads/master Commit: 315c4e78cb847edb7f0da873748a773c3ff81088 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=315c4e78cb847edb7f0da873...
Author: Petr Tesarik hat@tesarici.cz Date: Fri Mar 10 10:55:07 2006 +0100
winedbg: Fix lcall instruction opcode.
---
programs/winedbg/be_i386.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/programs/winedbg/be_i386.c b/programs/winedbg/be_i386.c index 1dc001d..3f0fb6a 100644 --- a/programs/winedbg/be_i386.c +++ b/programs/winedbg/be_i386.c @@ -331,7 +331,7 @@ static unsigned be_i386_is_func_call(con ch &= 0x38; if (ch != 0x10 && ch != 0x18) return FALSE; /* fall through */ - case 0x9c: + case 0x9a: case 0xCD: WINE_FIXME("Unsupported yet call insn (0x%02x) at %p\n", ch, insn); /* fall through */