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

    [bits 16]
    [org 0x7e00]

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

    %define KERNEL_OFFSET 0x1000
_s2_entry:  
    call _enable_a20
    call _enable_pm
    [bits 32]