diff options
author | dzwdz | 2021-06-25 12:30:07 +0200 |
---|---|---|
committer | dzwdz | 2021-06-25 12:30:07 +0200 |
commit | 174cf436480efe690f72d64c9ecd16b7af4d1f0e (patch) | |
tree | e8a6634a566492f3e511a2dd8c68870a665ba7a1 /platform | |
parent | fde20f86f5be5a39fd3eadf95ba71761d173e0ce (diff) |
setting up the GDT
Diffstat (limited to 'platform')
-rw-r--r-- | platform/boot.s | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/boot.s b/platform/boot.s index 77af2bc..6052347 100644 --- a/platform/boot.s +++ b/platform/boot.s @@ -12,6 +12,8 @@ /* a lil stack */ .section .bss +.global stack_top +.type stack_top, @object .align 16 stack_bottom: .skip 16384 |