diff m68k_to_x86.c @ 104:a0fdaa134964

Use unsigned comparisons for address decoding, exit when we hit an unhandled addressing mode for jmp
author Mike Pavone <pavone@retrodev.com>
date Thu, 27 Dec 2012 23:00:11 -0800
parents bfaca67eeb78
children 1a0fd122ca8f
line wrap: on
line diff
--- a/m68k_to_x86.c	Thu Dec 27 22:48:54 2012 -0800
+++ b/m68k_to_x86.c	Thu Dec 27 23:00:11 2012 -0800
@@ -1376,6 +1376,7 @@
 		break;
 	default:
 		printf("address mode %d not yet supported (jmp)\n", inst->src.addr_mode);
+		exit(1);
 	}
 	return dst;
 }