port_config.h 866 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. // draw2.c
  12. #define START_ROW 0 // which row of tiles to start rendering at?
  13. #define END_ROW 28 // ..end
  14. // pico.c
  15. #define CAN_HANDLE_240_LINES 1
  16. #define SIMPLE_WRITE_SOUND 0
  17. #define mix_32_to_16l_stereo_lvl mix_32_to_16l_stereo
  18. #define EL_LOGMASK (EL_STATUS|EL_ANOMALY|EL_UIO)
  19. // EL_VDPDMA|EL_ASVDP|EL_SR | EL_IDLE | EL_BUSREQ|EL_Z80BNK | EL_32X)
  20. //#define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__)
  21. #define dprintf(x...)
  22. // platform
  23. #define PATH_SEP "/"
  24. #define PATH_SEP_C '/'
  25. #define MENU_X2 0
  26. #endif //PORT_CONFIG_H