comparison m68k_to_x86.h @ 14:2bdad0f52f42

x86 code gen, initial work on translator
author Mike Pavone <pavone@retrodev.com>
date Tue, 27 Nov 2012 09:28:13 -0800
parents
children 3e7bfde7606e
comparison
equal deleted inserted replaced
13:168b1a873895 14:2bdad0f52f42
1 #include <stdint.h>
2
3 typedef struct {
4 uint32_t flags;
5 int8_t dregs[8];
6 int8_t aregs[8];
7 } x86_68k_options;
8
9 typedef struct {
10 uint8_t flags[5];
11 uint8_t status;
12 uint16_t reserved;
13 uint32_t dregs[8];
14 uint32_t aregs[8];
15 } m68k_context;
16