aboutsummaryrefslogtreecommitdiff
path: root/c64/c64.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/c64.h
added original sam_player code
Diffstat (limited to 'c64/c64.h')
-rw-r--r--c64/c64.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/c64/c64.h b/c64/c64.h
new file mode 100644
index 0000000..9b9c298
--- /dev/null
+++ b/c64/c64.h
@@ -0,0 +1,18 @@
+// c64.h
+//
+// 20060803 Markku Alén
+
+#ifndef __C64_H__
+#define __C64_H__ 1
+
+#include "kbd.h"
+
+#define F_CPU 984375L
+
+extern unsigned int total_cycles;
+
+void c64_init(void);
+
+void c64_run(unsigned int cycle_count);
+
+#endif