blob: 97a2d05686c9942ab79fe45ba944d2a4cde7c6e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
;; boot.stage2.asm
[bits 16]
[org 0x0000]
%include "boot.stage2.a20.asm"
%include "boot.stage2.pm.asm"
%define KERNEL_OFFSET 0x1000
_s2_entry:
call _enable_a20
call _enable_pm
[bits 32]
|