diff x86_backend.h @ 211:464513050c85

Small bit of cleanup
author Mike Pavone <pavone@retrodev.com>
date Tue, 16 Apr 2013 09:31:21 -0700
parents
children d9bf8e61c33c
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/x86_backend.h	Tue Apr 16 09:31:21 2013 -0700
@@ -0,0 +1,18 @@
+#ifndef X86_BACKEND_H_
+#define X86_BACKEND_H_
+
+typedef struct {
+	int32_t disp;
+	uint8_t mode;
+	uint8_t base;
+	uint8_t index;
+	uint8_t cycles;
+} x86_ea;
+
+typedef struct {
+	uint8_t  *base;
+	int32_t  *offsets;
+} native_map_slot;
+
+#endif //X86_BACKEND_H_
+