initial import
[picodrive.git] / platform / uiq3 / port_config.h
diff --git a/platform/uiq3/port_config.h b/platform/uiq3/port_config.h
new file mode 100644 (file)
index 0000000..0478ce4
--- /dev/null
@@ -0,0 +1,25 @@
+// port specific settings\r
+\r
+#ifndef PORT_CONFIG_H\r
+#define PORT_CONFIG_H\r
+\r
+#define CPU_CALL\r
+\r
+// draw2.c\r
+#define START_ROW  0 // which row of tiles to start rendering at?\r
+#define END_ROW   28 // ..end\r
+\r
+// pico.c\r
+#define CAN_HANDLE_240_LINES   0 // fow now\r
+\r
+//#define dprintf(f,...) printf(f"\n",##__VA_ARGS__)\r
+#ifdef __DEBUG_PRINT\r
+#ifdef __cplusplus\r
+extern "C"\r
+#endif\r
+void dprintf(char *format, ...);\r
+#else\r
+#define dprintf(x...)\r
+#endif\r
+\r
+#endif //PORT_CONFIG_H\r