about summary refs log tree commit diff stats
path: root/tools/iso/kernel.soso/utils.asm
diff options
context:
space:
mode:
Diffstat (limited to 'tools/iso/kernel.soso/utils.asm')
-rw-r--r--tools/iso/kernel.soso/utils.asm18
1 files changed, 0 insertions, 18 deletions
diff --git a/tools/iso/kernel.soso/utils.asm b/tools/iso/kernel.soso/utils.asm
deleted file mode 100644
index 568bfb02..00000000
--- a/tools/iso/kernel.soso/utils.asm
+++ /dev/null
@@ -1,18 +0,0 @@
-[GLOBAL readEip]
-readEip:
-    pop eax
-    jmp eax
-
-[GLOBAL disablePaging]
-disablePaging:
-    mov edx, cr0
-    and edx, 0x7fffffff
-    mov cr0, edx
-    ret
-
-[GLOBAL enablePaging]
-enablePaging:
-    mov edx, cr0
-    or edx, 0x80000000
-    mov cr0, edx
-    ret