16 lines
313 B
C
Raw Normal View History

#pragma once
2016-03-19 17:30:56 +01:00
#include "types.h"
2016-03-24 16:27:03 +01:00
#define HID_PAD (*(vu16 *)0x10146000 ^ 0xFFF)
#define BUTTON_SELECT (1 << 2)
#define COLOR_TITLE 0xFF9900
2016-03-25 04:50:19 +01:00
#define COLOR_WHITE 0xFFFFFF
#define COLOR_RED 0x0000FF
#define COLOR_GREEN 0x00FF00
2016-03-19 17:30:56 +01:00
int pos_y;
2016-03-19 17:30:56 +01:00
u16 waitInput(void);
void shutdown(u32 mode, const char *message);