ntr-hb-menu/exception-stub/source/display.h
ApacheThunder fcec9c72d0 Add UI changes...
* Added background graphics for bottom screen console
* Used new font for bottom screen. A stripped down version of the
misaki-gothic used by GodMode9i ->
https://github.com/DS-Homebrew/GodMode9i/tree/master/resources/fonts

* Renamed folders for bootloader and exception stub as I am not setup to
deal with sub-modules at the moment.
2024-03-13 20:25:31 -05:00

14 lines
250 B
C

#ifndef _display_h_
#define _display_h_
#define TOPSCREEN 0
#define BTMSCREEM 0
void initDisplay();
void kprintf(const char *str, ...);
void setCursor(int row, int column);
void getCursor(int *row, int *column);
void setScreen(int screen);
#endif