blob: de5fa7cf376cbf89a25a3371a775d64c69843072 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# declare some constants
.set ALIGN, 1<<0 # align loaded modules on page boundaries
.set MEMINFO, 1<<1 # provide memory map
.set FLAGS, ALIGN | MEMINFO # this is the Multiboot 'flag' field
.set MAGIC, 0x1BADB002 # 'magic number' lets bootloader find the header
.set CHECKSUM, -(MAGIC + FLAGS) # checksum of above, to prove we are multiboot
# the bootloader will search for this magic sequence
# and recognize us as a multiboot kernel
.section .text # .multiboot does not work ??
.align 4
.long MAGIC
.long FLAGS
.long CHECKSUM
# allocatable, writable, contains no data
.section .bootstrap_stack, "aw", @nobits
stack_bottom:
.skip 16384 # 16 KiB
stack_top:
# the linker script specifies _start as the entry point to the kernel and the
# bootloader will jump to this position once the kernel has been loaded
.section .text
.global _start
.type _start, @function
_start:
movl $stack_top, %esp
push %eax
push %ebx
call kernel_main
cli
hang:
hlt
jmp hang
# Set the size of the _start symbol to the current location '.' minus its start.
# This is useful when debugging or when you implement call tracing.
.size _start, . - _start
|