diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-04-17 09:54:17 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-04-17 10:08:50 +0200 |
| commit | c0099ab36bf9606c5503ceb0fa0d5b64f71c7203 (patch) | |
| tree | 1c310521280e3c995981a903895c7c2e124582ee /Public/Developer/SystemLib/AMD64 | |
| parent | f93fb4439aaa865d998a790348313a4c7163bb8b (diff) | |
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 <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Public/Developer/SystemLib/AMD64')
| -rw-r--r-- | Public/Developer/SystemLib/AMD64/CoreAssembly.s | 10 |
1 files changed, 5 insertions, 5 deletions
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 |
