port_config.h 428 B

12345678910111213141516171819
  1. // port specific settings
  2. #ifndef PORT_CONFIG_H
  3. #define PORT_CONFIG_H
  4. // draw.c
  5. #define OVERRIDE_HIGHCOL 1
  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. //#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