Commit | Line | Data |
---|---|---|
cc68a136 | 1 | // port specific settings\r |
2 | \r | |
3 | #ifndef PORT_CONFIG_H\r | |
4 | #define PORT_CONFIG_H\r | |
5 | \r | |
cc68a136 | 6 | // draw2.c\r |
7 | #define START_ROW 1 // which row of tiles to start rendering at?\r | |
8 | #define END_ROW 27 // ..end\r | |
9 | \r | |
10 | // pico.c\r | |
11 | #define CAN_HANDLE_240_LINES 0\r | |
12 | \r | |
13 | // common debug\r | |
14 | #if defined(__DEBUG_PRINT)\r | |
15 | void dprintf(char *format, ...);\r | |
16 | #else\r | |
17 | #define dprintf(x...)\r | |
18 | #endif\r | |
19 | \r | |
20 | \r | |
21 | #endif //PORT_CONFIG_H\r |