comparison m68k_to_x86.h @ 541:a59ac6b4b5b5

Get rid of the native stack option the 68K core. Trying to make it work with code that messes with the stack is not worth the trouble.
author Michael Pavone <pavone@retrodev.com>
date Sat, 15 Feb 2014 22:35:18 -0800
parents 4ca826862174
children 915a1cb98bac
comparison
equal deleted inserted replaced
540:4ca826862174 541:a59ac6b4b5b5
13 13
14 #define NUM_MEM_AREAS 4 14 #define NUM_MEM_AREAS 4
15 #define NATIVE_MAP_CHUNKS (64*1024) 15 #define NATIVE_MAP_CHUNKS (64*1024)
16 #define NATIVE_CHUNK_SIZE ((16 * 1024 * 1024 / NATIVE_MAP_CHUNKS)/2) 16 #define NATIVE_CHUNK_SIZE ((16 * 1024 * 1024 / NATIVE_MAP_CHUNKS)/2)
17 #define MAX_NATIVE_SIZE 255 17 #define MAX_NATIVE_SIZE 255
18
19 #define OPT_NATIVE_CALL_STACK 0x1
20 18
21 typedef void (*start_fun)(uint8_t * addr, void * context); 19 typedef void (*start_fun)(uint8_t * addr, void * context);
22 20
23 typedef struct { 21 typedef struct {
24 uint32_t flags; 22 uint32_t flags;