summaryrefslogtreecommitdiff
path: root/bios
diff options
context:
space:
mode:
authorAlejandro Sior <aho@sior.be>2022-06-18 10:39:10 +0200
committerAlejandro Sior <aho@sior.be>2022-06-18 10:39:10 +0200
commitbd98b26786d21ffddb017ffe35ecaa4a9fd0aa4a (patch)
tree1b78a43385bf0751abab8dd2423905696fd5baab /bios
parent3aefeeb723b8822916fb39b7c32551c35c06e32f (diff)
boot: arbitrary location of stage 1 and identity map more memoryHEADmaster
Diffstat (limited to 'bios')
-rw-r--r--bios/boot.ha4
1 files changed, 4 insertions, 0 deletions
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;