comparison sms.h @ 1752:d6d4c006a7b3

Initial attempt at interrupts in new Z80 core and integrating it into main executable
author Michael Pavone <pavone@retrodev.com>
date Sun, 10 Feb 2019 11:58:23 -0800
parents 360d5bab199f
children 8fe162bdb038 9a8dd4ba2753
comparison
equal deleted inserted replaced
1751:c5d4e1d14dac 1752:d6d4c006a7b3
2 #define SMS_H_ 2 #define SMS_H_
3 3
4 #include "system.h" 4 #include "system.h"
5 #include "vdp.h" 5 #include "vdp.h"
6 #include "psg.h" 6 #include "psg.h"
7 #ifdef NEW_CORE
8 #include "z80.h"
9 #else
7 #include "z80_to_x86.h" 10 #include "z80_to_x86.h"
11 #endif
8 #include "io.h" 12 #include "io.h"
9 13
10 #define SMS_RAM_SIZE (8*1024) 14 #define SMS_RAM_SIZE (8*1024)
11 #define SMS_CART_RAM_SIZE (32*1024) 15 #define SMS_CART_RAM_SIZE (32*1024)
12 16