diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-07-11 16:37:21 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-07-11 16:37:21 -0400 |
commit | 57afb4058710a978bd7b07a368125d04378c62f1 (patch) | |
tree | 7a06f1679f0612c58d5a209a013261ff5ad6cb82 /gba/source/link.h | |
parent | 004575f7cec14946c1936aceca6efee38b7f8a74 (diff) | |
download | gen3uploader-57afb4058710a978bd7b07a368125d04378c62f1.tar.gz gen3uploader-57afb4058710a978bd7b07a368125d04378c62f1.tar.bz2 gen3uploader-57afb4058710a978bd7b07a368125d04378c62f1.zip |
started tweaking with stuff
Diffstat (limited to 'gba/source/link.h')
-rw-r--r-- | gba/source/link.h | 12 |
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 | |||
6 | void waitForWriteAccess(); | ||
7 | void waitForAck(); | ||
8 | void sendS32(s32 val); | ||
9 | void sendU32(u32 val); | ||
10 | u32 recieveU32(); | ||
11 | |||
12 | #endif | ||