From 8a9208612eec8ddae4c418485d848ecfa0613699 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Mon, 30 Oct 2023 22:12:14 +0100 Subject: Meta: Move kernel and userland to their own folders. This is to allow both the kernel and the userland to share certain header files and to make the folder structure a bit more clear. --- cpu/int_syscall.s | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 cpu/int_syscall.s (limited to 'cpu/int_syscall.s') diff --git a/cpu/int_syscall.s b/cpu/int_syscall.s deleted file mode 100644 index 8c3c25f..0000000 --- a/cpu/int_syscall.s +++ /dev/null @@ -1,20 +0,0 @@ -.intel_syntax noprefix -.global int_syscall -.extern syscall_function_handler -int_syscall: - push ebp - push edi - push esi - push edx - push ecx - push ebx - push eax - call syscall_function_handler - add esp, 4 - pop ebx - pop ecx - pop edx - pop esi - pop edi - pop ebp - iretd -- cgit v1.2.3