memory map explanation

This commit is contained in:
Benji Dial 2019-12-27 22:02:56 -05:00
parent dbfa44db9c
commit 4906ad3388
3 changed files with 4 additions and 2 deletions

3
doc/internals/mmap.md Normal file
View file

@ -0,0 +1,3 @@
# Internals - Memory Map
##

View file

@ -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)

View file

@ -31,7 +31,6 @@ dw 0x0000;flags
dd mb_end - $$ - 16
dd 5;boot device
dd 6;memory map
mb_end:
section .text