From 06121c7075e91056820c674f192be460ef5eb656 Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Sat, 15 Jan 2022 16:24:08 -0600 Subject: arch: i386: add support for IRQs and system calls Add support for rudementary system calls and IRQ interrupts. Signed-off-by: Danny Holman --- arch/i386/boot/boot.s | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'arch/i386/boot/boot.s') diff --git a/arch/i386/boot/boot.s b/arch/i386/boot/boot.s index 4b32ca2..91df039 100644 --- a/arch/i386/boot/boot.s +++ b/arch/i386/boot/boot.s @@ -71,6 +71,10 @@ _start: call idt_install call pic_remap + pushl $1 + pushl print_hello + call register_syscall + call kernel_main call jump_userspace -- cgit v1.2.3