This repository has been archived on 2022-05-31. You can view files and clone it, but cannot push or open issues or pull requests.

16 lines
218 B
C
Raw Permalink Normal View History

2015-08-05 05:54:00 -04:00
/*
* draw.h
* by Reisyukaku
2015-08-14 22:28:26 -04:00
* Copyright (c) 2015 All Rights Reserved
2015-08-05 05:54:00 -04:00
*/
#include "types.h"
2016-02-08 03:37:03 +01:00
struct fb {
2015-08-05 05:54:00 -04:00
u8 *top_left;
u8 *top_right;
u8 *bottom;
2016-02-08 03:37:03 +01:00
};
2015-08-05 05:54:00 -04:00
void clearScreen(void);
2015-08-05 05:54:00 -04:00
void loadSplash(void);