Don't use huge pages, for simplicity
This commit is contained in:
parent
99ecff44d8
commit
646d25825a
@ -15,7 +15,13 @@ BootP3:
|
|||||||
.quad 0
|
.quad 0
|
||||||
.endr
|
.endr
|
||||||
BootP2:
|
BootP2:
|
||||||
.quad (PAGE_PRESENT | PAGE_WRITE | PAGE_HUGE)
|
.quad offset BootP1 + (PAGE_PRESENT | PAGE_WRITE)
|
||||||
.rept ENTRIES_PER_PT - 1
|
.rept ENTRIES_PER_PT - 1
|
||||||
.quad 0
|
.quad 0
|
||||||
.endr
|
.endr
|
||||||
|
BootP1:
|
||||||
|
.set i, 0
|
||||||
|
.rept ENTRIES_PER_PT
|
||||||
|
.quad (i << 12) + (PAGE_PRESENT | PAGE_WRITE)
|
||||||
|
.set i, (i+1)
|
||||||
|
.endr
|
||||||
|
Loading…
x
Reference in New Issue
Block a user