mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-18 18:51:46 +00:00
Add multiboot stub (currently broken)
This commit is contained in:
10
Architecture/i386/Bootstrap/Multiboot_PageTable.asm
Normal file
10
Architecture/i386/Bootstrap/Multiboot_PageTable.asm
Normal file
@@ -0,0 +1,10 @@
|
||||
KERNEL_PAGE_NUMBER equ 768 ; 0xC0000000
|
||||
|
||||
section .data
|
||||
global BootPageTable
|
||||
align 0x1000
|
||||
BootPageTable:
|
||||
dd 0x00000083
|
||||
times (KERNEL_PAGE_NUMBER - 1) dd 0
|
||||
dd 0x00000083
|
||||
times (1024 - KERNEL_PAGE_NUMBER - 1) dd 0
|
Reference in New Issue
Block a user