giz menu works
[libpicofe.git] / linux / port_config.h
CommitLineData
720ee7f6 1// port specific settings
2
3#ifndef PORT_CONFIG_H
4#define PORT_CONFIG_H
5
6#define CPU_CALL
79cad122 7#define NO_SYNC
720ee7f6 8
9// draw2.c
10#define START_ROW 0 // which row of tiles to start rendering at?
11#define END_ROW 28 // ..end
12
13// pico.c
14#define CAN_HANDLE_240_LINES 1
15
53c908bb 16#define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__)
17//#define dprintf(x...)
720ee7f6 18
19#endif //PORT_CONFIG_H
20