]> git.sur5r.net Git - c128-kasse/blobdiff - include/globals.h
speed up interrupt handler by directly writing to VDC RAM
[c128-kasse] / include / globals.h
index 00fca09576a72a310f6820f1f28af838a7688412..ec8385421c5e36bb623c80c70de492cadb6aeec1 100644 (file)
@@ -1,16 +1,18 @@
-#ifndef _GLOBALS_H_
-#define _GLOBALS_H_
+#ifndef GLOBALS_H
+#define GLOBALS_H
 
 #include <stdint.h>
+#include "c128time.h"
+#include "kasse.h"
 
-#ifdef _IS_GLOBALS_C
+#ifdef IS_GLOBALS_C
 #define GLOBAL
 #else
 #define GLOBAL extern
 #endif
 
-void init_globals(void);
-
 GLOBAL uint8_t printing;
+GLOBAL enum kasse_menu kasse_menu;
+GLOBAL struct daytime_t daytime;
 
-#endif // _GLOBALS_H_
+#endif /*  GLOBALS_H */