Move constants from linker script to dedicated file

This commit is contained in:
pjht 2023-03-27 14:48:27 -05:00
parent c62cc3b5e4
commit a6927f8a07
Signed by: pjht
GPG Key ID: 7B5F6AFBEC7EE78E
2 changed files with 2 additions and 1 deletions

2
kernel/constants.68k Normal file
View File

@ -0,0 +1,2 @@
.global kernel_map_page
kernel_map_page = 0xFEF000

View File

@ -34,5 +34,4 @@ SECTIONS
*(.pagereserve)
}
kernel_map_page = 0xFEF000;
}