aboutsummaryrefslogtreecommitdiff
path: root/c64/prg_file.h
diff options
context:
space:
mode:
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