Reduced number of statically allocated page tables

This commit is contained in:
2021-04-10 21:15:32 -05:00
parent 1f4fb5dd0b
commit 557f3194ed

View File

@@ -124,7 +124,7 @@ _tempPgDir:
_tempIdentityMap:
.skip 4096
_tempPgTable:
.skip 8192
.skip 4096
_bootCmdLine:
.skip 64
@@ -143,6 +143,9 @@ memory_map:
.global _start
.type _start, @function
_start:
cli
# This platform reqires a Multiboot2 bootloader.
cmp $0x36d76289, %eax
jne .err
@@ -212,12 +215,6 @@ _start:
push %ebx
call initialize
# mov $_bootCmdLine, %eax
# push %eax
# Call main function
# call main
.err:
cli
2: hlt