view 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
line wrap: on
line source

#include <stdint.h>

typedef struct {
	uint32_t flags;
	int8_t   dregs[8];
	int8_t   aregs[8];
} x86_68k_options;

typedef struct {
	uint8_t  flags[5];
	uint8_t  status;
	uint16_t reserved;
	uint32_t dregs[8];
	uint32_t aregs[8];
} m68k_context;