screen ptr/size unification, major cleanups
[libpicofe.git] / linux / port_config.h
CommitLineData
720ee7f6 1// port specific settings
2
3#ifndef PORT_CONFIG_H
4#define PORT_CONFIG_H
5
79cad122 6#define NO_SYNC
720ee7f6 7
b8464531 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
e31266dd 13#define SCREEN_SIZE_FIXED 0
14#define SCREEN_WIDTH 320
15#define SCREEN_HEIGHT 240
16
b8464531 17// draw.c
18#define OVERRIDE_HIGHCOL 0
19
720ee7f6 20// draw2.c
21#define START_ROW 0 // which row of tiles to start rendering at?
22#define END_ROW 28 // ..end
23
24// pico.c
25#define CAN_HANDLE_240_LINES 1
26
41ec19af 27#define SIMPLE_WRITE_SOUND 0
385a157e 28#define mix_32_to_16l_stereo_lvl mix_32_to_16l_stereo
29
8a091e48 30#define EL_LOGMASK (EL_ANOMALY|EL_STATUS|EL_SRAMIO|EL_EEPROM|EL_UIO|EL_IDLE)//|EL_VDPDMA|EL_HVCNT|EL_ASVDP)//|EL_SVP)
dd69833d 31// EL_VDPDMA|EL_ASVDP|EL_SR) // |EL_BUSREQ|EL_Z80BNK)
0d9652b5 32
15b55b4e 33//#define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__)
34#define dprintf(x...)
720ee7f6 35
61f66fe0 36// platform
37#define PLAT_MAX_KEYS 32
38#define PLAT_HAVE_JOY 1
39#define PATH_SEP "/"
40#define PATH_SEP_C '/'
41
720ee7f6 42#endif //PORT_CONFIG_H
43