mirror of
https://github.com/LumaTeam/Luma3DS.git
synced 2026-02-22 09:54:38 +00:00
14 lines
188 B
C
14 lines
188 B
C
|
|
/*
|
||
|
|
* draw.h
|
||
|
|
* by Reisyukaku
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "types.h"
|
||
|
|
|
||
|
|
static struct fb {
|
||
|
|
u8 *top_left;
|
||
|
|
u8 *top_right;
|
||
|
|
u8 *bottom;
|
||
|
|
} *fb = (struct fb *)0x23FFFE00;
|
||
|
|
|
||
|
|
void loadSplash(void);
|