From c0099ab36bf9606c5503ceb0fa0d5b64f71c7203 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Wed, 17 Apr 2024 09:54:17 +0200 Subject: Unrelated: These changes are important but related to nothing. - Window now becomes Wm, as in Window manager. - Fix entrypoint for FragLib. - Remove CoreEvents to be replaced with Event Server, reworked Display Server. Signed-off-by: Amlal El Mahrouss --- Public/Developer/SystemLib/AMD64/CoreAssembly.s | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Public/Developer/SystemLib/AMD64') diff --git a/Public/Developer/SystemLib/AMD64/CoreAssembly.s b/Public/Developer/SystemLib/AMD64/CoreAssembly.s index 5c398e94..58fa3c28 100644 --- a/Public/Developer/SystemLib/AMD64/CoreAssembly.s +++ b/Public/Developer/SystemLib/AMD64/CoreAssembly.s @@ -6,23 +6,23 @@ ------------------------------------------- */ -.section .text +.text -.globl RtGetApp +.globl RtGetAppPointer .globl RtAssertTriggerInterrupt /* @brief Application getter */ /* @throws: ApptError: appartement error. */ -RtGetApp: +RtGetAppPointer: mov $0x10, %rcx /* sysGetProcessObject */ - int $0x21 + int $0x32 /* rax gets saved and returned. */ ret RtAssertTriggerInterrupt: mov $0x11, %rcx /* sysTerminateCurrentProcess */ - int $0x21 + int $0x32 ret -- cgit v1.2.3