summaryrefslogtreecommitdiffhomepage
path: root/Public/Developer/SystemLib/AMD64
diff options
context:
space:
mode:
Diffstat (limited to 'Public/Developer/SystemLib/AMD64')
-rw-r--r--Public/Developer/SystemLib/AMD64/CoreAssembly.s10
1 files changed, 5 insertions, 5 deletions
diff --git a/Public/Developer/SystemLib/AMD64/CoreAssembly.s b/Public/Developer/SystemLib/AMD64/CoreAssembly.s
index 58bb1260..1d361621 100644
--- a/Public/Developer/SystemLib/AMD64/CoreAssembly.s
+++ b/Public/Developer/SystemLib/AMD64/CoreAssembly.s
@@ -4,19 +4,19 @@
.section .text
-.globl RtGetAppObject
-.globl __assert_chk_fail
+.globl RtGetApp
+.globl RtAssertTriggerInterrupt
-/* @brief Process object getter */
+/* @brief Application getter */
/* @throws: ApptError: appartement error. */
-RtGetAppObject:
+RtGetApp:
mov $0x10, %rcx /* sysGetProcessObject */
int $0x21
/* rax gets saved and returned. */
ret
-__assert_chk_fail:
+RtAssertTriggerInterrupt:
mov $0x11, %rcx /* sysTerminateCurrentProcess */
int $0x21