summaryrefslogtreecommitdiffhomepage
path: root/dev/libSystem/src/SystemProc.asm
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-08-18 15:47:44 +0200
committerGitHub <noreply@github.com>2025-08-18 15:47:44 +0200
commit918690e78ae54e4f763bb5756d7b9a5d5b04108a (patch)
treecd4a67f4ee4c6042d1f66ad8a49fcc921c64c711 /dev/libSystem/src/SystemProc.asm
parentdb1d0e53cc21678ace07b72652ed7b3b1054da30 (diff)
feat: SystemProc.asm: Make use of `syscall` instead of `int 50`
Diffstat (limited to 'dev/libSystem/src/SystemProc.asm')
-rw-r--r--dev/libSystem/src/SystemProc.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/dev/libSystem/src/SystemProc.asm b/dev/libSystem/src/SystemProc.asm
index 8adcea0b..991a371f 100644
--- a/dev/libSystem/src/SystemProc.asm
+++ b/dev/libSystem/src/SystemProc.asm
@@ -24,7 +24,7 @@ libsys_syscall_arg_1:
xor rax, rax
- int 50
+ syscall
pop rbp
@@ -39,7 +39,7 @@ libsys_syscall_arg_2:
xor rax, rax
- int 50
+ syscall
pop rbp
@@ -55,7 +55,7 @@ libsys_syscall_arg_3:
xor rax, rax
- int 50
+ syscall
pop rbp
@@ -74,7 +74,7 @@ libsys_syscall_arg_4:
xor rax, rax
- int 50
+ syscall
pop rbp