diff options
author | Alexis211 <alexis211@gmail.com> | 2009-11-08 17:23:46 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-11-08 17:23:46 +0100 |
commit | 87a1dd39d0036f55f5bdbf4ef8921a4767d95825 (patch) | |
tree | 3eeb650ec3f12c031a0aa0d8b2571c6b15427d86 /Source/Kernel/Core | |
parent | c712d7f6f801b073920c7b914ee1b95358113893 (diff) | |
download | Melon-87a1dd39d0036f55f5bdbf4ef8921a4767d95825.tar.gz Melon-87a1dd39d0036f55f5bdbf4ef8921a4767d95825.zip |
Nothing, really : put some utility functions in V86.ns
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 !"); |