Browse Source

boot.asm: indentation

master
3moon 8 years ago
parent
commit
ec431fd9e2
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/arch/x86_64/boot.asm

+ 2
- 2
src/arch/x86_64/boot.asm View File

@ -96,7 +96,7 @@ setup_ptables:
or eax, 0b1 ; present + writable or eax, 0b1 ; present + writable
mov [p3_table], eax mov [p3_table], eax
; map each p2 entry to a 2mib hugepage
; map each p2 entry to a 2mib hugepage
mov ecx, 0 mov ecx, 0
.map_p2: .map_p2:
; p2[ecx] -> huge_page{@2MiB*ecx} ; p2[ecx] -> huge_page{@2MiB*ecx}
@ -166,4 +166,4 @@ gdt64:
dq (1<<43) | (1<<44) | (1<<47) | (1<<53) ; code segment dq (1<<43) | (1<<44) | (1<<47) | (1<<53) ; code segment
.pointer: .pointer:
dw $ - gdt64 - 1 dw $ - gdt64 - 1
dq gdt64
dq gdt64

Loading…
Cancel
Save