diff options
Diffstat (limited to 'Source/Kernel/Core')
-rw-r--r-- | Source/Kernel/Core/kmain.wtf.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Source/Kernel/Core/kmain.wtf.cpp b/Source/Kernel/Core/kmain.wtf.cpp index 26afdfd..afb22aa 100644 --- a/Source/Kernel/Core/kmain.wtf.cpp +++ b/Source/Kernel/Core/kmain.wtf.cpp @@ -31,18 +31,6 @@ #include <Ressources/Graphics/logo.text.cxd> -#include <TaskManager/V86/V86Thread.class.h> -extern v86_function_t v86test; - -void testV86() { - VirtualTerminal* vt = new ScrollableVT(15, 76, 200, SHELL_FGCOLOR, SHELL_BGCOLOR); - Task::currProcess()->setOutVT(vt); - v86_retval_t r; - new V86Thread(&v86test, &r, 0); - while (!r.finished); - PANIC("V86 TEST END"); -} - extern u32int end; //Placement address extern "C" void kmain(multiboot_info_t* mbd, u32int magic); @@ -196,8 +184,6 @@ void kmain(multiboot_info_t* mbd, u32int magic) { Sys::halt(); */ - testV86(); - Process* p = Process::run("/System/Applications/PaperWork.app", 0); if (p == 0) { PANIC("Could not launch PaperWork !"); |