diff options
Diffstat (limited to 'include/print.h')
-rw-r--r-- | include/print.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/print.h b/include/print.h index c46843c..421b1f0 100644 --- a/include/print.h +++ b/include/print.h @@ -11,9 +11,14 @@ typedef struct TextOutput { uint16_t* vid_mem; }__attribute__((packed)) TextOutput; +TextOutput monitor; + TextOutput createOutput(const int max_row, const int max_column, uint16_t* vid_mem); void scrollText(TextOutput* textOutput); void putChar(uint8_t character, uint8_t background, uint8_t foreground, TextOutput* textOutput); void print(char* string, uint8_t background, uint8_t foreground, TextOutput* textOutput); +char* itoa(int value, char* buffer, int base); +void printToMonitor(char* string); +void printIntToMonitor(int num, int base); #endif // PRINT_H |