Petr Tesarik : winedbg: Fix lcall instruction opcode.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Mar 10 14:51:46 CST 2006


Module: wine
Branch: refs/heads/master
Commit: 315c4e78cb847edb7f0da873748a773c3ff81088
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=315c4e78cb847edb7f0da873748a773c3ff81088

Author: Petr Tesarik <hat at 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 */




More information about the wine-cvs mailing list