From d1fc71b12e97f6397f781565c44a6ee84441b2b5 Mon Sep 17 00:00:00 2001 From: Mike Pavone Date: Wed, 12 Dec 2012 20:43:42 -0800 Subject: Fix bug in address visitation in disassembler --- dis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dis.c') diff --git a/dis.c b/dis.c index 8826864..a3d39fb 100644 --- a/dis.c +++ b/dis.c @@ -76,7 +76,7 @@ int main(int argc, char ** argv) break; } for(;;) { - visit(instbuf.address); + visit(address); next = m68k_decode(encoded, &instbuf, address); address += (next-encoded)*2; encoded = next; -- cgit v1.2.3