From c83d7bdcb60859f232e0fa6994ffba01509aba2e Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Sat, 15 Jan 2022 16:11:30 -0600 Subject: arch: i386: simplify IDT setup Simplify the interrupt descriptor table setup and frame assembly. Signed-off-by: Danny Holman --- arch/i386/boot/crti.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arch/i386/boot/crti.s') diff --git a/arch/i386/boot/crti.s b/arch/i386/boot/crti.s index 4e1e4cb..8386b77 100644 --- a/arch/i386/boot/crti.s +++ b/arch/i386/boot/crti.s @@ -1,15 +1,15 @@ .section .init + .global _init .type _init, @function - _init: pushl %ebp movl %esp, %ebp .section .fini + .global _fini .type _fini, @function - _fini: pushl %ebp movl %esp, %ebp -- cgit v1.2.3