port_config.h 866 B

12345678910111213141516171819202122232425262728293031323334
  1. // port specific settings
  2. #ifndef PORT_CONFIG_H
  3. #define PORT_CONFIG_H
  4. #define CASE_SENSITIVE_FS 0
  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 0 // for now
  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. //extern void dprintf(char *format, ...);
  18. //#define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__)
  19. #define dprintf(x...)
  20. // platform
  21. #define PLAT_MAX_KEYS (256+19)
  22. #define PLAT_HAVE_JOY 0
  23. #define PATH_SEP "\\"
  24. #define PATH_SEP_C '\\'
  25. #endif // PORT_CONFIG_H