diff m68k_to_x86.h @ 235:d9bf8e61c33c

Get Z80 core working for simple programs
author Mike Pavone <pavone@retrodev.com>
date Thu, 25 Apr 2013 21:01:11 -0700
parents 464513050c85
children 63b9a500a00b
line wrap: on
line diff
--- a/m68k_to_x86.h	Mon Apr 22 23:56:13 2013 -0700
+++ b/m68k_to_x86.h	Thu Apr 25 21:01:11 2013 -0700
@@ -9,18 +9,11 @@
 #define NUM_MEM_AREAS 4
 #define NATIVE_MAP_CHUNKS (64*1024)
 #define NATIVE_CHUNK_SIZE ((16 * 1024 * 1024 / NATIVE_MAP_CHUNKS)/2)
-#define INVALID_OFFSET 0xFFFFFFFF
 #define EXTENSION_WORD 0xFFFFFFFE
 #define MAX_NATIVE_SIZE 255
 
 #define OPT_NATIVE_CALL_STACK 0x1
 
-typedef struct deferred_addr {
-	struct deferred_addr *next;
-	uint8_t              *dest;
-	uint32_t             address;
-} deferred_addr;
-
 typedef struct {
 	uint32_t        flags;
 	int8_t          dregs[8];