aboutsummaryrefslogtreecommitdiffstats
path: root/src/boot/boot.stage2.asm
blob: 759b7844d31eeed4b6acfe4b461948b9bab22383 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
    ;; boot.stage2.asm

    [bits 16]

    %include "boot.stage2.a20.asm"
    %include "boot.stage2.pm.asm"
    %include "boot.stage1.print.asm"

section .stage2

_s2_entry:  
    mov si, boot_stage2_msg
    call _print_string
    call _enable_a20
    call _enable_pm
    [bits 32]


boot_stage2_msg:    db "Entering Stage 2", 13, 10, 0