From a4534660fecb1b571c24ad82e67bc6c2fb814cb9 Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Sun, 24 Jan 2021 21:10:57 -0600 Subject: x86: reorganize the i386 directory Add structure to the internals of the x86 directory. Signed-off-by: Danny Holman --- arch/i386/boot.s | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 arch/i386/boot.s (limited to 'arch/i386/boot.s') diff --git a/arch/i386/boot.s b/arch/i386/boot.s deleted file mode 100644 index 56ac227..0000000 --- a/arch/i386/boot.s +++ /dev/null @@ -1,32 +0,0 @@ -.set ALIGN, 1<<0 -.set MEMINFO, 1<<1 -.set FLAGS, ALIGN | MEMINFO -.set MAGIC, 0x1BADB002 -.set CHECKSUM, -(MAGIC + FLAGS) - -.section .multiboot -.align 4 -.long MAGIC -.long FLAGS -.long CHECKSUM - -.section .bss -.align 16 -stack_bottom: -.skip 16384 -stack_top: - -.section .text -.global _start -.type _start, @function - -_start: - movl $stack_top, %esp - - call _init - call kernel_main - - cli -1: hlt - jmp 1b -.size _start, . - _start -- cgit v1.2.3