comparison blastem.c @ 2499:d74d3998482c

Make some progress on compiling full emulator with new 68K core
author Michael Pavone <pavone@retrodev.com>
date Tue, 30 Apr 2024 00:02:14 -0700
parents cb62730d5c99
children 8cf7cadc17ee
comparison
equal deleted inserted replaced
2498:dffda054d218 2499:d74d3998482c
8 #include <string.h> 8 #include <string.h>
9 #include <ctype.h> 9 #include <ctype.h>
10 10
11 #include "system.h" 11 #include "system.h"
12 #include "68kinst.h" 12 #include "68kinst.h"
13 #include "m68k_core.h"
14 #ifdef NEW_CORE
15 #include "z80.h"
16 #else
17 #include "z80_to_x86.h"
18 #endif
19 #include "mem.h" 13 #include "mem.h"
20 #include "vdp.h" 14 #include "vdp.h"
21 #include "render.h" 15 #include "render.h"
22 #include "genesis.h" 16 #include "genesis.h"
23 #include "gdb_remote.h" 17 #include "gdb_remote.h"