diff options
Diffstat (limited to 'gba/source/link.h')
-rw-r--r-- | gba/source/link.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gba/source/link.h b/gba/source/link.h new file mode 100644 index 0000000..08fd998 --- /dev/null +++ b/gba/source/link.h | |||
@@ -0,0 +1,17 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2017 hatkirby | ||
3 | * | ||
4 | * This software may be modified and distributed under the terms | ||
5 | * of the MIT license. See the LICENSE file for details. | ||
6 | */ | ||
7 | #ifndef _LINK_H_ | ||
8 | #define _LINK_H_ | ||
9 | |||
10 | #include <gba.h> | ||
11 | |||
12 | void initializeLink(); | ||
13 | void waitForAck(); | ||
14 | void sendS32(s32 val); | ||
15 | void sendU32(u32 val); | ||
16 | |||
17 | #endif | ||