Search
lxdream.org :: lxdream/src/x86dasm/x86dasm.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/x86dasm/x86dasm.c
changeset 1026:a0aa3c503103
prev968:6fb1481859a4
next1065:bc1cc0c54917
author nkeynes
date Sat Jun 13 07:04:24 2009 +0000 (14 years ago)
permissions -rw-r--r--
last change Fix cpu_desc_t initializer (not that we really use this one)
file annotate diff log raw
1.1 --- a/src/x86dasm/x86dasm.c Thu Jan 15 11:23:20 2009 +0000
1.2 +++ b/src/x86dasm/x86dasm.c Sat Jun 13 07:04:24 2009 +0000
1.3 @@ -27,8 +27,8 @@
1.4
1.5 const struct cpu_desc_struct x86_cpu_desc =
1.6 { "x86", (disasm_func_t)x86_disasm_instruction, NULL, mem_has_page,
1.7 - NULL, NULL, NULL, 1,
1.8 - NULL, 0, NULL,
1.9 + NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1,
1.10 + NULL, 0, NULL, 0, 0,
1.11 &sh4r.pc };
1.12
1.13 static int x86_disasm_output( void *data, const char *format, ... );
.