mirror of
https://github.com/lifehackerhansol/blocksds-exception-stub.git
synced 2025-06-19 05:55:38 -04:00
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
|