diff m68k_to_x86.h @ 197:7c227a8ec53d

Add instruction address logging to translator and support for reading an address log to the disassembler
author Mike Pavone <pavone@retrodev.com>
date Thu, 17 Jan 2013 20:00:07 -0800
parents c66e4636f991
children 209a37eed3e7
line wrap: on
line diff
--- a/m68k_to_x86.h	Thu Jan 17 08:19:29 2013 -0800
+++ b/m68k_to_x86.h	Thu Jan 17 20:00:07 2013 -0800
@@ -1,4 +1,5 @@
 #include <stdint.h>
+#include <stdio.h>
 #include "68kinst.h"
 
 #define NUM_MEM_AREAS 4
@@ -30,6 +31,7 @@
 	uint8_t         *cur_code;
 	uint8_t         *code_end;
 	uint8_t         **ram_inst_sizes;
+	FILE            *address_log;
 } x86_68k_options;
 
 typedef struct {