port_config.h 820 B

123456789101112131415161718192021222324252627282930313233
  1. // port specific settings
  2. #ifndef PORT_CONFIG_H
  3. #define PORT_CONFIG_H
  4. #define CASE_SENSITIVE_FS 1 // CS filesystem
  5. #define DONT_OPEN_MANY_FILES 0
  6. #define REDUCE_IO_CALLS 0
  7. #define SIMPLE_WRITE_SOUND 0
  8. // draw.c
  9. #define OVERRIDE_HIGHCOL 0
  10. // draw2.c
  11. #define START_ROW 0 // which row of tiles to start rendering at?
  12. #define END_ROW 28 // ..end
  13. // pico.c
  14. #define CAN_HANDLE_240_LINES 1
  15. // logging emu events
  16. #define EL_LOGMASK (EL_STATUS|EL_IDLE) // (EL_STATUS|EL_ANOMALY|EL_UIO|EL_SRAMIO|EL_INTS|EL_CDPOLL) // xffff
  17. //#define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__)
  18. #define dprintf(x...)
  19. // platform
  20. #define PLAT_MAX_KEYS 32
  21. #define PLAT_HAVE_JOY 1
  22. #define PATH_SEP "/"
  23. #define PATH_SEP_C '/'
  24. #endif //PORT_CONFIG_H