aboutsummaryrefslogtreecommitdiff
path: root/c64/prg_file.h
diff options
context:
space:
mode:
authorReiner Herrmann <reiner@reiner-h.de>2012-02-10 14:25:38 +0100
committerReiner Herrmann <reiner@reiner-h.de>2012-02-10 14:25:38 +0100
commita5d7e68af96d9b62821d8fd47f5039c5bae5d421 (patch)
treeab7d1a70312afb74dc7184d8b269b08f332f4b74 /c64/prg_file.h
added original sam_player code
Diffstat (limited to 'c64/prg_file.h')
-rw-r--r--c64/prg_file.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/c64/prg_file.h b/c64/prg_file.h
new file mode 100644
index 0000000..0cdf1de
--- /dev/null
+++ b/c64/prg_file.h
@@ -0,0 +1,14 @@
+// prg_file.h
+//
+// 20060803 Markku Alén
+
+#ifndef __PRG_FILE_H__
+#define __PRG_FILE_H__ 1
+
+extern int prg_addr;
+extern unsigned char prg_data[65536];
+extern int prg_len;
+
+int prg_load(const char *filename);
+
+#endif