memory map explanation
This commit is contained in:
parent
dbfa44db9c
commit
4906ad3388
3 changed files with 4 additions and 2 deletions
3
doc/internals/mmap.md
Normal file
3
doc/internals/mmap.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Internals - Memory Map
|
||||
|
||||
##
|
|
@ -397,7 +397,7 @@ uint32_t main(void) {
|
|||
put_sz(": ignoring");
|
||||
|
||||
}
|
||||
tag_pointer = (struct tag_start *)(((uint32_t)tag_pointer + tag_pointer->size - 1 & 0xfffffff8) + 8);
|
||||
tag_pointer = (struct tag_start *)(((uint32_t)tag_pointer + tag_pointer->size - 1 & ~0x00000007) + 8);
|
||||
}
|
||||
|
||||
if (!have_boot_device)
|
||||
|
|
|
@ -31,7 +31,6 @@ dw 0x0000;flags
|
|||
dd mb_end - $$ - 16
|
||||
dd 5;boot device
|
||||
dd 6;memory map
|
||||
|
||||
mb_end:
|
||||
|
||||
section .text
|
||||
|
|
Reference in a new issue