2018-09-06 22:49:00 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
2018-09-25 00:37:34 -04:00
|
|
|
#include <common.h>
|
2018-10-09 01:42:28 -04:00
|
|
|
#include <stdio.h>
|
2018-09-06 22:49:00 -04:00
|
|
|
|
2018-09-27 01:06:55 -04:00
|
|
|
bool console_vga_enabled();
|
|
|
|
|
void console_set_vga_enabled(bool enabled);
|
2018-09-06 22:49:00 -04:00
|
|
|
|
2018-09-27 01:06:55 -04:00
|
|
|
bool console_serial_enabled();
|
|
|
|
|
void console_set_serial_enabled(bool enabled);
|
2018-09-06 22:49:00 -04:00
|
|
|
|
|
|
|
|
void clear_screen();
|
2018-09-07 00:32:45 -04:00
|
|
|
|
2018-09-25 00:37:34 -04:00
|
|
|
_noreturn
|
2018-10-09 01:42:28 -04:00
|
|
|
void panic(char *str, ...);
|
|
|
|
|
|
|
|
|
|
extern FILE *serial;
|