32x: drc: handlers wip

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@826 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2009-10-26 11:16:19 +00:00
parent c18edb34e6
commit 80599a42db
10 changed files with 830 additions and 116 deletions

View file

@ -170,7 +170,7 @@ void host_dasm(void *addr, int len)
vma_end = vma + len;
while (vma < vma_end) {
printf(" %p ", (void *)(long)vma);
printf(" %p ", (void *)(long)vma);
vma += print_insn_func(vma, &di);
printf("\n");
}