about summary refs log tree commit diff stats
path: root/gba/source/link.c
blob: c84e44df4072f43d51ca5120b2ae18d2319bd9fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
 * Copyright (C) 2017 hatkirby
 *
 * This software may be modified and distributed under the terms
 * of the MIT license.  See the LICENSE file for details.
 */
#include "link.h"

#define JOY_WRITE 2
#define JOY_READ 4
#define JOY_RW 6

void initializeLink()
{
	REG_HS_CTRL |= JOY_RW;
	REG_JOYTR = 0;
  while ((REG_HS_CTRL & JOY_WRITE) == 0);
  REG_HS_CTRL |= JOY_RW;
}

void waitForAck()
{
  while ((REG_HS_CTRL & JOY_WRITE) == 0);
  REG_HS_CTRL |= JOY_RW;
	REG_JOYTR = 0;
  while ((REG_HS_CTRL & JOY_WRITE) == 0);
  REG_HS_CTRL |= JOY_RW;
}

void sendS32(s32 val)
{
  REG_JOYTR = val;
}

void sendU32(u32 val)
{
  REG_JOYTR = val;
}