comparison genesis.h @ 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 a4f8fa24764b
children 3f58fec775df
comparison
equal deleted inserted replaced
2498:dffda054d218 2499:d74d3998482c
6 #ifndef GENESIS_H_ 6 #ifndef GENESIS_H_
7 #define GENESIS_H_ 7 #define GENESIS_H_
8 8
9 #include <stdint.h> 9 #include <stdint.h>
10 #include "system.h" 10 #include "system.h"
11 #include "m68k_core.h"
12 #ifdef NEW_CORE 11 #ifdef NEW_CORE
12 #include "m68k.h"
13 #include "z80.h" 13 #include "z80.h"
14 #else 14 #else
15 #include "m68k_core.h"
15 #include "z80_to_x86.h" 16 #include "z80_to_x86.h"
16 #endif 17 #endif
17 #include "ym2612.h" 18 #include "ym2612.h"
18 #include "vdp.h" 19 #include "vdp.h"
19 #include "psg.h" 20 #include "psg.h"