summaryrefslogtreecommitdiff
path: root/src/disk_img.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/disk_img.h')
-rw-r--r--src/disk_img.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/disk_img.h b/src/disk_img.h
new file mode 100644
index 0000000..3095af0
--- /dev/null
+++ b/src/disk_img.h
@@ -0,0 +1,12 @@
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+extern unsigned short int disk_img[];
+void Draw16x16Image(unsigned short *Screen, int x, int y, unsigned short *Img);
+void Draw16x16Square(unsigned short *Screen, int x, int y, unsigned char r, unsigned char g, unsigned char b);
+
+
+#ifdef __cplusplus
+}
+#endif