diff z80_to_x86.c @ 424:7e8e179116af

Add support for loading GST format savestates
author Mike Pavone <pavone@retrodev.com>
date Sat, 29 Jun 2013 17:15:08 -0700
parents 9fb111b5641f
children 140af5509ce7
line wrap: on
line diff
--- a/z80_to_x86.c	Tue Jun 25 23:18:57 2013 -0700
+++ b/z80_to_x86.c	Sat Jun 29 17:15:08 2013 -0700
@@ -1637,7 +1637,7 @@
 	default: {
 		char disbuf[80];
 		z80_disasm(inst, disbuf, address);
-		fprintf(stderr, "unimplemented instruction: %s\n", disbuf);
+		fprintf(stderr, "unimplemented instruction: %s at %X\n", disbuf, address);
 		FILE * f = fopen("zram.bin", "wb");
 		fwrite(context->mem_pointers[0], 1, 8 * 1024, f);
 		fclose(f);