port_config.h 527 B

12345678910111213141516171819202122
  1. // port specific settings
  2. #ifndef PORT_CONFIG_H
  3. #define PORT_CONFIG_H
  4. // draw.c
  5. #define OVERRIDE_HIGHCOL 0
  6. // draw2.c
  7. #define START_ROW 0 // which row of tiles to start rendering at?
  8. #define END_ROW 28 // ..end
  9. // pico.c
  10. #define CAN_HANDLE_240_LINES 1
  11. // logging emu events
  12. #define EL_LOGMASK 0 // (EL_STATUS|EL_ANOMALY|EL_UIO|EL_SRAMIO) // xffff
  13. //#define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__)
  14. #define dprintf(x...)
  15. #endif //PORT_CONFIG_H