aboutsummaryrefslogtreecommitdiffstats
path: root/src/boot/boot.stage2.asm
blob: 56ab73a077753b1b54311e87791b4f38a3b454a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
    ;; boot.stage2.asm

    [bits 16]
    [org 0x7e00]

    %include "boot.stage2.a20.asm"
    %include "boot.stage2.pm.asm"
_s2_entry:  
    call _enable_a20
    call _enter_pm
    [bits 32]