summaryrefslogtreecommitdiffhomepage
path: root/Private/HALKit/AMD64/DebugManager.asm
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-02 13:49:50 +0100
committerAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-02 13:49:50 +0100
commite559cf01834340d0a4dfcb45f7bdf081e8994032 (patch)
treeb7d1aa03111f83c0b7b058dca2786a6bd234a7e3 /Private/HALKit/AMD64/DebugManager.asm
parent05eca8d3061b60eac0a652a4b1e39269a9af79e8 (diff)
Kernel: Port toolchain to mingw (PE/COFF)
Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private/HALKit/AMD64/DebugManager.asm')
-rw-r--r--Private/HALKit/AMD64/DebugManager.asm31
1 files changed, 0 insertions, 31 deletions
diff --git a/Private/HALKit/AMD64/DebugManager.asm b/Private/HALKit/AMD64/DebugManager.asm
deleted file mode 100644
index 5cc0cd10..00000000
--- a/Private/HALKit/AMD64/DebugManager.asm
+++ /dev/null
@@ -1,31 +0,0 @@
-;; /*
-;; * ========================================================
-;; *
-;; * HCore
-;; * Copyright Mahrouss Logic, all rights reserved.
-;; *
-;; * ========================================================
-;; */
-
-[global rt_debug_fence]
-[global __rt_debug_int_3]
-
-;; //////////////////////////////////////////////////// ;;
-
-__rt_debug_record_table:
- db "DebugMgr/HCore", 0xa, 0xd, 0
-__rt_debug_int_3:
- push 0x6677 ;; Debug check error
-;; then halt and goes back to L0, thens halts...
-L0:
- hlt
- jmp $
-
-rt_debug_fence:
- mov [__rt_debug_record_table], rsi
- push rsi
- jmp [rbx]
- pop rsi
- ret
-
-;; //////////////////////////////////////////////////// ;;