Removed bloat

rust
E. Almqvist 3 years ago
parent 4a7e399113
commit db3848da60
  1. 6
      bootloader/bios/memory.asm

@ -27,13 +27,13 @@ mmap_e820:
int 0x15 ; Do the interupt int 0x15 ; Do the interupt
; carry flag = (un)supported function ; carry flag = (un)supported function
jc short mmap_e820_fail ; Try probing instead jc mmap_e820_fail ; Try probing instead
cmp eax, edx ; eax should be = 'SMAP' cmp eax, edx ; eax should be = 'SMAP'
jne short mmap_e820_fail ; if not then fail jne mmap_e820_fail ; if not then fail
test ebx, ebx test ebx, ebx
je short mmap_e820_fail je mmap_e820_fail
mmap_e820_fail: mmap_e820_fail:
stc stc

Loading…
Cancel
Save