about summary refs log tree commit diff stats
path: root/gba/source/link.h
diff options
context:
space:
mode:
Diffstat (limited to 'gba/source/link.h')
-rw-r--r--gba/source/link.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/gba/source/link.h b/gba/source/link.h new file mode 100644 index 0000000..f18b38a --- /dev/null +++ b/gba/source/link.h
@@ -0,0 +1,12 @@
1#ifndef _LINK_H_
2#define _LINK_H_
3
4#include <gba.h>
5
6void waitForWriteAccess();
7void waitForAck();
8void sendS32(s32 val);
9void sendU32(u32 val);
10u32 recieveU32();
11
12#endif