X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Farch%2Fx86_64%2Fstart64.asm;h=beb22e5a52381addbaf996351208dd65f391a8c7;hb=e7d03978fb7c0c6ab1250e56e73afba9ffb89923;hp=bf7293b6dcc17e102f5c2d56dd676c68ce9ab4f0;hpb=33bcf4b3feb0e5e4548548bf3d2a50c52ffb6115;p=tpg%2Facess2.git diff --git a/Kernel/arch/x86_64/start64.asm b/Kernel/arch/x86_64/start64.asm index bf7293b6..beb22e5a 100644 --- a/Kernel/arch/x86_64/start64.asm +++ b/Kernel/arch/x86_64/start64.asm @@ -3,6 +3,7 @@ ; [bits 64] +[section .text] [global start64] start64: ; Set kernel stack @@ -13,3 +14,8 @@ start64: GetRIP: mov rax, [rsp] ret + +[section .bss] +[global gInitialKernelStack] + resd 1024*1 ; 1 Page +gInitialKernelStack: