X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;ds=sidebyside;f=src%2Fboot%2Fboot2.s;h=7470aef3aac5ca2d589039fab3d872c39f31f112;hb=395502ec9dab0fda04bacb223f1fecdbbbdbe1b7;hp=2a163e1f650923be53a4d3a3cb8cf93e4d5694a2;hpb=27a78ae0ed500338ad3df62e67709ff8cc247e6d;p=bootcensus diff --git a/src/boot/boot2.s b/src/boot/boot2.s index 2a163e1..7470aef 100644 --- a/src/boot/boot2.s +++ b/src/boot/boot2.s @@ -615,16 +615,20 @@ e820_looptop: cmp $0x534d4150, %eax jnz e820_fail + # skip areas starting above 4GB as we won't be able to use them + cmpl $0, 4(%edi) + jnz e820_skip + + # only care for type 1 (usable ram), otherwise ignore + cmpl $1, 16(%edi) + jnz e820_skip + mov buffer, %eax mov $boot_mem_map, %esi mov boot_mem_map_size, %ebp # again, that's [ebp * 8 + esi] mov %eax, (%esi,%ebp,8) - # only care for type 1 (usable ram), otherwise ignore - cmpl $1, 16(%edi) - jnz e820_skip - # skip areas with 0 size (also clamp size to 4gb) # test high 32bits cmpl $0, 12(%edi) @@ -837,3 +841,5 @@ int_op: int $0 # buffer used by the track loader ... to load tracks. .align 16 buffer: + .global low_mem_buffer +low_mem_buffer: