-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathplatform.h
44 lines (32 loc) · 975 Bytes
/
platform.h
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
39
40
41
42
43
44
// Copyright 2008-2010 Segher Boessenkool <[email protected]>
// Licensed under the terms of the GNU GPL, version 2
// http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
#ifndef _PLATFORM_H
#define _PLATFORM_H
#include "types.h"
extern u8 button_up;
extern u8 button_down;
extern u8 button_left;
extern u8 button_right;
extern u8 button_A;
extern u8 button_B;
extern u8 button_C;
extern u8 button_menu;
void platform_init(void);
void open_rom(const char *path);
void read_rom(u32 offset);
void *open_eeprom(const char *name, u8 *data, u32 len);
void save_eeprom(void *cookie, u8 *data, u32 len);
extern u32 pixel_mask[3];
extern u32 pixel_shift[3];
void update_screen(void);
char update_controller(void);
u32 get_realtime(void);
void __noreturn fatal(const char *format, ...);
void warn(const char *format, ...);
#ifdef USE_DEBUG
void debug(const char *format, ...);
#else
static inline void debug(__unused const char *format, ...) { }
#endif
#endif