port_config.h 944 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // port specific settings
  2. #ifndef PORT_CONFIG_H
  3. #define PORT_CONFIG_H
  4. #define NO_SYNC
  5. #define CASE_SENSITIVE_FS 1 // CS filesystem
  6. #define DONT_OPEN_MANY_FILES 0
  7. #define REDUCE_IO_CALLS 0
  8. #define SCREEN_SIZE_FIXED 0
  9. #define SCREEN_WIDTH 320
  10. #define SCREEN_HEIGHT 240
  11. #define MSCREEN_SIZE_FIXED 0
  12. #define MSCREEN_WIDTH SCREEN_WIDTH
  13. #define MSCREEN_HEIGHT SCREEN_HEIGHT
  14. // draw2.c
  15. #define START_ROW 0 // which row of tiles to start rendering at?
  16. #define END_ROW 28 // ..end
  17. // pico.c
  18. #define CAN_HANDLE_240_LINES 1
  19. #define SIMPLE_WRITE_SOUND 0
  20. #define mix_32_to_16l_stereo_lvl mix_32_to_16l_stereo
  21. #define EL_LOGMASK (EL_STATUS|EL_ANOMALY|EL_UIO)
  22. // EL_VDPDMA|EL_ASVDP|EL_SR | EL_IDLE | EL_BUSREQ|EL_Z80BNK | EL_32X)
  23. //#define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__)
  24. #define dprintf(x...)
  25. // platform
  26. #define PATH_SEP "/"
  27. #define PATH_SEP_C '/'
  28. #endif //PORT_CONFIG_H