port_config.h 506 B

123456789101112131415161718192021
  1. // port specific settings
  2. #ifndef PORT_CONFIG_H
  3. #define PORT_CONFIG_H
  4. #define NO_SYNC
  5. // draw2.c
  6. #define START_ROW 0 // which row of tiles to start rendering at?
  7. #define END_ROW 28 // ..end
  8. // pico.c
  9. #define CAN_HANDLE_240_LINES 1
  10. #define EL_LOGMASK (EL_ANOMALY|EL_STATUS|EL_SRAMIO|EL_EEPROM) // EL_VDPDMA|EL_ASVDP|EL_SR) // |EL_BUSREQ|EL_Z80BNK)
  11. //#define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__)
  12. #define dprintf(x...)
  13. #endif //PORT_CONFIG_H