cc68a136 |
1 | // port specific settings |
2 | |
3 | #ifndef PORT_CONFIG_H |
4 | #define PORT_CONFIG_H |
5 | |
2433f409 |
6 | #define NO_SYNC |
cc68a136 |
7 | |
f579f7b8 |
8 | #define CASE_SENSITIVE_FS 1 // CS filesystem |
9 | #define DONT_OPEN_MANY_FILES 0 |
10 | #define REDUCE_IO_CALLS 0 |
11 | #define SIMPLE_WRITE_SOUND 0 |
12 | |
13 | // draw.c |
14 | #define OVERRIDE_HIGHCOL 0 |
15 | |
cc68a136 |
16 | // draw2.c |
17 | #define START_ROW 0 // which row of tiles to start rendering at? |
18 | #define END_ROW 28 // ..end |
19 | |
20 | // pico.c |
21 | #define CAN_HANDLE_240_LINES 1 |
22 | |
03a265e5 |
23 | #define SIMPLE_WRITE_SOUND 0 |
f53f286a |
24 | #define mix_32_to_16l_stereo_lvl mix_32_to_16l_stereo |
25 | |
c060a9ab |
26 | #define EL_LOGMASK (EL_ANOMALY|EL_STATUS|EL_SRAMIO|EL_EEPROM|EL_UIO|EL_IDLE)//|EL_VDPDMA|EL_HVCNT|EL_ASVDP)//|EL_SVP) |
5de27868 |
27 | // EL_VDPDMA|EL_ASVDP|EL_SR) // |EL_BUSREQ|EL_Z80BNK) |
69996cb7 |
28 | |
4f65685b |
29 | //#define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__) |
30 | #define dprintf(x...) |
cc68a136 |
31 | |
f8af9634 |
32 | // platform |
33 | #define PLAT_MAX_KEYS 32 |
34 | #define PLAT_HAVE_JOY 1 |
35 | #define PATH_SEP "/" |
36 | #define PATH_SEP_C '/' |
37 | |
cc68a136 |
38 | #endif //PORT_CONFIG_H |
39 | |