Mercurial > repos > blastem
view x86_backend.h @ 218:1abf8e967b33
Fix autoincrement on a7 when used as a destination in a byte sized instruction
author | Mike Pavone <pavone@retrodev.com> |
---|---|
date | Sat, 20 Apr 2013 00:36:50 -0700 |
parents | 464513050c85 |
children | d9bf8e61c33c |
line wrap: on
line source
#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_