mirror of
https://github.com/encounter/osdev.git
synced 2026-07-10 12:18:43 -07:00
17 lines
287 B
C
17 lines
287 B
C
#pragma once
|
|
|
|
#include <common.h>
|
|
#include <stdio.h>
|
|
|
|
bool console_vga_enabled();
|
|
void console_set_vga_enabled(bool enabled);
|
|
|
|
bool console_serial_enabled();
|
|
void console_set_serial_enabled(bool enabled);
|
|
|
|
void clear_screen();
|
|
|
|
_noreturn
|
|
void panic(char *str, ...);
|
|
|
|
extern FILE *serial; |