2019-04-01 01:18:48 +00:00
|
|
|
.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
|
|
|
|
|
2019-04-06 19:00:11 +00:00
|
|
|
# C stack startup
|
2019-04-01 01:18:48 +00:00
|
|
|
.section .bss
|
|
|
|
.align 16
|
|
|
|
stack_bottom:
|
|
|
|
.skip 16384
|
|
|
|
stack_top:
|
|
|
|
|
2019-04-06 19:00:11 +00:00
|
|
|
# start function - calls kernel_main
|
2019-04-01 01:18:48 +00:00
|
|
|
.section .text
|
|
|
|
.global _start
|
|
|
|
.type _start, @function
|
2019-04-01 11:21:00 +00:00
|
|
|
|
2019-04-01 01:18:48 +00:00
|
|
|
_start:
|
|
|
|
movl $stack_top, %esp
|
|
|
|
|
|
|
|
call _init
|
|
|
|
|
|
|
|
call kernel_main
|
|
|
|
|
|
|
|
cli
|
|
|
|
1: hlt
|
|
|
|
jmp 1b
|
|
|
|
|
2019-04-06 19:25:31 +00:00
|
|
|
.size _start, . - _start
|
|
|
|
|
|
|
|
|
|
|
|
# GDT segment register setup
|
|
|
|
.global gdt_flush
|
|
|
|
.extern gp
|
|
|
|
gdt_flush:
|
|
|
|
lgdt (gp) #load the GDT with the special pointer
|
|
|
|
mov %eax,0x10 #offset from GDT to data segment
|
|
|
|
mov %eax, %ds
|
|
|
|
mov %eax, %es
|
|
|
|
mov %eax, %fs
|
|
|
|
mov %eax, %gs
|
|
|
|
mov %eax, %ss
|
|
|
|
|
|
|
|
pushl 12(%esp)
|
|
|
|
push $flush2
|
|
|
|
ljmp *(%esp) #long jump
|
|
|
|
flush2:
|
|
|
|
ret #return to c code
|