Have Console::write() directly call vga_putch.

This commit is contained in:
Andreas Kling 2018-10-21 22:11:46 +02:00
commit fc88368582
Notes: sideshowbarker 2024-07-19 18:45:54 +09:00
5 changed files with 18 additions and 23 deletions

View file

@ -26,6 +26,7 @@
#include <ELFLoader/ELFLoader.h>
#include "Console.h"
//#define TEST_VFS
//#define TEST_ELF_LOADER
//#define TEST_CRASHY_USER_PROCESSES
@ -163,7 +164,7 @@ void init()
Disk::initialize();
#if CHECK_VFS
#ifdef TEST_VFS
auto vfs = make<VirtualFileSystem>();
auto dev_zero = make<ZeroDevice>();