2016-03-20 16:55:49 +01:00
|
|
|
#pragma once
|
|
|
|
|
2016-03-19 17:30:56 +01:00
|
|
|
#include "types.h"
|
|
|
|
|
2016-03-20 16:55:49 +01:00
|
|
|
#define HID_PAD ((~*(vu16 *)0x10146000) & 0xFFF)
|
|
|
|
#define BUTTON_START (1 << 3)
|
|
|
|
#define BUTTON_SELECT (1 << 2)
|
2016-03-19 17:30:56 +01:00
|
|
|
|
2016-03-20 16:55:49 +01:00
|
|
|
extern int pos_y;
|
2016-03-19 17:30:56 +01:00
|
|
|
|
|
|
|
u16 waitInput(void);
|
2016-03-20 16:55:49 +01:00
|
|
|
void shutdown(u32 mode, char *message);
|