mirror of
https://github.com/ApacheThunder/ntr-hb-menu.git
synced 2025-06-19 11:45:35 -04:00

* 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.
14 lines
250 B
C
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
|