117 lines
1.9 KiB
NASM
117 lines
1.9 KiB
NASM
;; File: loader.asm
|
|
format binary
|
|
|
|
include '../common/const.inc'
|
|
include 'multiboot.inc'
|
|
|
|
org LOADER_BASE
|
|
use32
|
|
|
|
jmp _start
|
|
|
|
align 4
|
|
multiboot_header:
|
|
mb_header MultibootHeader multiboot_header
|
|
|
|
_start:
|
|
cmp eax, MULTIBOOT_MAGIC
|
|
je multiboot
|
|
|
|
use16
|
|
align 2
|
|
|
|
; =========================================================================
|
|
; real mode code
|
|
; =========================================================================
|
|
push cs
|
|
pop ds
|
|
|
|
mov si, msg_stage2
|
|
call bios_print
|
|
|
|
; enable A20 line
|
|
call a20_enable
|
|
jc .error_a20
|
|
|
|
; fetch memory map from bios
|
|
call memory_get_map
|
|
jc .error_memory
|
|
|
|
; video information
|
|
call video_setup
|
|
xchg bx, bx
|
|
|
|
; load GDT and enter Protected-Mode
|
|
lgdt [gdt_ptr]
|
|
|
|
; enable protected mode
|
|
mov eax, cr0
|
|
or al, 1
|
|
mov cr0, eax
|
|
|
|
; reload ds, es, fs, gs, ss
|
|
mov ax, 0x10
|
|
mov ds, ax
|
|
mov es, ax
|
|
mov fs, ax
|
|
mov gs, ax
|
|
mov ss, ax
|
|
jmp 0x8:common32
|
|
|
|
.error_memory:
|
|
mov si, msg_error_memory
|
|
jmp .error
|
|
.error_a20:
|
|
mov si, msg_error_a20
|
|
.error:
|
|
call bios_print
|
|
@@:
|
|
hlt
|
|
jmp @b
|
|
|
|
include 'a20.inc'
|
|
include '../common/bios.inc'
|
|
include 'memory.inc'
|
|
include 'video.inc'
|
|
include 'gdt.inc'
|
|
|
|
msg_stage2 db "StupidOS Loader", CR, LF, 0
|
|
msg_error_a20 db "ERROR: can't enable a20 line", CR, LF, 0
|
|
msg_error_memory db "ERROR: can't detect available memory", CR, LF, 0
|
|
|
|
use32
|
|
; =========================================================================
|
|
; protected mode code
|
|
; =========================================================================
|
|
multiboot:
|
|
; https://www.gnu.org/software/grub/manual/multiboot/multiboot.html#Machine-state
|
|
|
|
; get screen information
|
|
|
|
; get memory map
|
|
|
|
; get kernel from module
|
|
|
|
common32:
|
|
mov dword [0xb8000], 0x07690748
|
|
|
|
; paging
|
|
; identity map first 1MB
|
|
; map kernel to 0xC0000000
|
|
|
|
hang:
|
|
hlt
|
|
jmp $
|
|
|
|
_edata:
|
|
|
|
boot_structure:
|
|
|
|
align 4096
|
|
boot_page_directory:
|
|
rb 4096
|
|
|
|
boot_768_page_table:
|
|
rb 4096
|
|
|
|
_end:
|