GWRAM.SYSTEM/util.h

15 lines
223 B
C
Raw Normal View History

2020-07-22 04:47:25 +00:00
#include <stdint.h>
#ifndef UTIL_H
#define UTIL_H
#define true 1
#define false 0
2023-09-21 08:25:33 +00:00
#define VBL ((signed char*)0xC019)
2020-07-22 04:47:25 +00:00
char read_applekey(void);
2023-09-21 08:25:33 +00:00
void wait(char frames);
2020-07-22 04:47:25 +00:00
void spin(uint8_t x, uint8_t y);
#endif /* UTIL_H */