Commit 7f1105e6 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winedbg: Add disassembly capacity to x86-64 backend.

parent e1b677dc
...@@ -17,6 +17,7 @@ C_SRCS = \ ...@@ -17,6 +17,7 @@ C_SRCS = \
break.c \ break.c \
crashdlg.c \ crashdlg.c \
db_disasm.c \ db_disasm.c \
db_disasm64.c \
display.c \ display.c \
expr.c \ expr.c \
gdbproxy.c \ gdbproxy.c \
......
...@@ -186,10 +186,7 @@ static unsigned be_x86_64_is_func_call(const void* insn, ADDRESS64* callee) ...@@ -186,10 +186,7 @@ static unsigned be_x86_64_is_func_call(const void* insn, ADDRESS64* callee)
return FALSE; return FALSE;
} }
static void be_x86_64_disasm_one_insn(ADDRESS64* addr, int display) extern void be_x86_64_disasm_one_insn(ADDRESS64* addr, int display);
{
dbg_printf("Disasm NIY\n");
}
#define DR7_CONTROL_SHIFT 16 #define DR7_CONTROL_SHIFT 16
#define DR7_CONTROL_SIZE 4 #define DR7_CONTROL_SIZE 4
......
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