2024-08-10 01:14:29 +02:00
|
|
|
.extern _syscall
|
2025-02-26 01:42:35 +01:00
|
|
|
|
|
|
|
.section .bss, "aw", @nobits
|
|
|
|
.align 16
|
|
|
|
syscall_stack_bottom:
|
|
|
|
.skip (1 << 16) # 16 KiB
|
|
|
|
syscall_stack_top:
|
|
|
|
|
|
|
|
.section .text
|
2024-08-10 01:14:29 +02:00
|
|
|
.global syscall
|
|
|
|
syscall:
|
2024-11-27 21:57:18 +01:00
|
|
|
mov $0x10, %edx
|
|
|
|
mov %ax, %ds
|
|
|
|
mov %ax, %es
|
|
|
|
mov %ax, %fs
|
|
|
|
mov %ax, %gs
|
|
|
|
|
|
|
|
mov %esp, %edx
|
2025-02-26 01:42:35 +01:00
|
|
|
|
|
|
|
mov $syscall_stack_top, %esp
|
2024-11-27 21:57:18 +01:00
|
|
|
push 0x10(%edx)
|
|
|
|
push 0x0C(%edx)
|
|
|
|
push 0x08(%edx)
|
|
|
|
push 0x04(%edx)
|
|
|
|
push 0x00(%edx)
|
2024-08-10 01:14:29 +02:00
|
|
|
|
|
|
|
push %ecx
|
|
|
|
push %ebx
|
|
|
|
push %eax
|
|
|
|
|
|
|
|
call _syscall
|
|
|
|
|
|
|
|
pop %eax
|
|
|
|
pop %ebx
|
|
|
|
pop %ecx
|
|
|
|
iret
|
|
|
|
|