revision 1026:a0aa3c503103
summary |
tree |
shortlog |
changelog |
graph |
changeset |
raw | bz2 | zip | gz changeset | 1026:a0aa3c503103 |
parent | 1025:f32183d273fb |
child | 1027:4e527bc96109 |
author | nkeynes |
date | Sat Jun 13 07:04:24 2009 +0000 (13 years ago) |
Fix cpu_desc_t initializer (not that we really use this one)
1.1 --- a/src/x86dasm/x86dasm.c Sat Jun 13 07:03:51 2009 +00001.2 +++ b/src/x86dasm/x86dasm.c Sat Jun 13 07:04:24 2009 +00001.3 @@ -27,8 +27,8 @@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.13 static int x86_disasm_output( void *data, const char *format, ... );
.