diff options
author | Alexis211 <alexis211@gmail.com> | 2009-11-08 18:32:36 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-11-08 18:32:36 +0100 |
commit | 4bbc1baf27573b4ca6fe6d8ed18b236ac3c631d2 (patch) | |
tree | 3e0a5981eed78336bbd5baf7c6be50cd518be1fa /Source/Kernel/TaskManager/V86 | |
parent | 699a1497a4eb432f41d643a18f2ac6ba10a66518 (diff) | |
download | Melon-4bbc1baf27573b4ca6fe6d8ed18b236ac3c631d2.tar.gz Melon-4bbc1baf27573b4ca6fe6d8ed18b236ac3c631d2.zip |
Switching to text mode now really switches to text mode.
Diffstat (limited to 'Source/Kernel/TaskManager/V86')
-rw-r--r-- | Source/Kernel/TaskManager/V86/V86.ns.h | 4 | ||||
-rw-r--r-- | Source/Kernel/TaskManager/V86/v86.wtf.asm | 11 |
2 files changed, 0 insertions, 15 deletions
diff --git a/Source/Kernel/TaskManager/V86/V86.ns.h b/Source/Kernel/TaskManager/V86/V86.ns.h index 6e8797a..98f3ead 100644 --- a/Source/Kernel/TaskManager/V86/V86.ns.h +++ b/Source/Kernel/TaskManager/V86/V86.ns.h @@ -22,10 +22,6 @@ inline FARPTR LINEAR_TO_FP(void* ptr) { #define V86_ALLOC_START 0x1000 #define V86_ALLOC_END 0x9000 - -//This sample V86 function switches to graphical mode 13. Useless. -extern "C" v86_function_t v86test; - namespace V86 { void run(v86_function_t& entry, registers_t ®s, u32int data); diff --git a/Source/Kernel/TaskManager/V86/v86.wtf.asm b/Source/Kernel/TaskManager/V86/v86.wtf.asm deleted file mode 100644 index 15e3969..0000000 --- a/Source/Kernel/TaskManager/V86/v86.wtf.asm +++ /dev/null @@ -1,11 +0,0 @@ -[BITS 16] - -[GLOBAL v86test] -v86test: - dw v86test_end - v86test_start -v86test_start: - mov ax, 0013h - int 10h - int 3 -v86test_end: - db 0 |