aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuild.sh2
-rw-r--r--src/boot.asm55
2 files changed, 56 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index ab562f1..82d98ce 100755
--- a/build.sh
+++ b/build.sh
@@ -9,7 +9,7 @@ rm -rf ./build/ ./iso/
mkdir ./build/
# Make source files
-i686-elf-as ./src/boot.s -o ./build/boot.o
+nasm -f elf ./src/boot.asm -o ./build/boot.o
files=""
find ./src -name \*.c >./build/tmp
diff --git a/src/boot.asm b/src/boot.asm
new file mode 100644
index 0000000..fda8b0c
--- /dev/null
+++ b/src/boot.asm
@@ -0,0 +1,55 @@
+[BITS 32]
+global start
+start:
+ mov esp, _sys_stack ; Points stack to stack area
+ jmp stublet
+
+; Align with 4 Bytes
+ALIGN 4
+mboot:
+ ; Multiboot macros
+ MULTIBOOT_PAGE_ALIGN equ 1<<0
+ MULTIBOOT_MEMORY_INFO equ 1<<1
+ MULTIBOOT_AOUT_KLUDGE equ 1<<16
+ MULTIBOOT_HEADER_MAGIC equ 0x1BADB002
+ MULTIBOOT_HEADER_FLAGS equ MULTIBOOT_PAGE_ALIGN | MULTIBOOT_MEMORY_INFO | MULTIBOOT_AOUT_KLUDGE
+ MULTIBOOT_CHECKSUM equ -(MULTIBOOT_HEADER_MAGIC + MULTIBOOT_HEADER_FLAGS)
+ EXTERN code, bss, end
+
+ ; GRUB Multiboot header
+ dd MULTIBOOT_HEADER_MAGIC
+ dd MULTIBOOT_HEADER_FLAGS
+ dd MULTIBOOT_CHECKSUM
+
+ ; AOUT kludge
+ dd mboot
+ dd code
+ dd bss
+ dd end
+ dd start
+
+; Endless loop
+stublet:
+ extern kernel_main
+ call kernel_main
+ jmp $
+
+global gdt_flush
+extern gp
+gdt_flush:
+ lgdt [gp]
+ mov ax, 0x10 ; Data segment offset of GDT
+ mov ds, ax
+ mov es, ax
+ mov fs, ax
+ mov gs, ax
+ mov ss, ax
+ jmp 0x08:flush2 ; Code segment offset
+flush2:
+ ret ; Returns to C code
+
+; TODO: ISR
+
+SECTION .bss
+ resb 8192 ; Reserve 8KiB
+_sys_stack: \ No newline at end of file