From bd98b26786d21ffddb017ffe35ecaa4a9fd0aa4a Mon Sep 17 00:00:00 2001 From: Alejandro Sior Date: Sat, 18 Jun 2022 10:39:10 +0200 Subject: boot: arbitrary location of stage 1 and identity map more memory --- bios/boot.ha | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'bios') diff --git a/bios/boot.ha b/bios/boot.ha index e165f5a..e8b4f98 100644 --- a/bios/boot.ha +++ b/bios/boot.ha @@ -10,3 +10,7 @@ export const @symbol("drive_spt") drive_sectors_per_track: u8; // Amount of heads that the boot drive has export const @symbol("drive_heads") drive_heads: u8; + +// Buildup location for the data structures +const @symbol("buildup") _buildup: u8; +export const buildup: *[*]u8 = &_buildup: *[*]u8; -- cgit v1.2.3