mirror of
https://github.com/garrettsworkshop/GWRAM.SYSTEM.git
synced 2024-11-16 01:08:36 +00:00
12 lines
163 B
C
12 lines
163 B
C
#include <stdint.h>
|
|
|
|
#ifndef UTIL_H
|
|
#define UTIL_H
|
|
|
|
#define true 1
|
|
#define false 0
|
|
|
|
char read_applekey(void);
|
|
void spin(uint8_t x, uint8_t y);
|
|
|
|
#endif /* UTIL_H */ |