Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
frank wrote:
Not True. I use a binary kernel. The first 4kb of my kernel is an assembly stub that sets up protected mode and paging and jumps to the rest of the kernel.
Frank,
Does that mean that your kernel is in two binaries? If so, I assume you load the 'initializer' portion into one page and the other part into another page?
frank wrote:
Not True. I use a binary kernel. The first 4kb of my kernel is an assembly stub that sets up protected mode and paging and jumps to the rest of the kernel.
Frank,
Does that mean that your kernel is in two binaries? If so, I assume you load the 'initializer' portion into one page and the other part into another page?
Well no they are in the same binary and are linked together it's just that I page align my sections.
I see. So you padded the space between the sections until your second section is on a new page? Then you used paging to map the second section to higher half?
This sounds like a more straightforward way to do the higher half kernel.