From e5c28a46a731a79d02266aa690a90a8f809d0f70 Mon Sep 17 00:00:00 2001 From: kotorifan Date: Sat, 31 Jan 2026 15:22:00 +0100 Subject: A20 enable code added --- src/boot/boot.stage2.asm | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/boot/boot.stage2.asm (limited to 'src/boot/boot.stage2.asm') diff --git a/src/boot/boot.stage2.asm b/src/boot/boot.stage2.asm new file mode 100644 index 0000000..56ab73a --- /dev/null +++ b/src/boot/boot.stage2.asm @@ -0,0 +1,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] -- cgit v1.3