blob: f18b38a48ed80e9377fa883ab21042ea8a8f19cd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _LINK_H_
#define _LINK_H_
#include <gba.h>
void waitForWriteAccess();
void waitForAck();
void sendS32(s32 val);
void sendU32(u32 val);
u32 recieveU32();
#endif
|