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