about summary refs log tree commit diff stats
path: root/gba/source/link.h
blob: 08fd998d4280cf48c26191901096386851ff8069 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (C) 2017 hatkirby
 *
 * This software may be modified and distributed under the terms
 * of the MIT license.  See the LICENSE file for details.
 */
#ifndef _LINK_H_
#define _LINK_H_

#include <gba.h>

void initializeLink();
void waitForAck();
void sendS32(s32 val);
void sendU32(u32 val);

#endif