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.
Im Writting an Operating System and got to the Point where i have to setup my Memory (Paging etc.).
Memory and Paging are setted up so far but i have the Problem to tell my MemoryManager where the Kernel Starts and Ends. In GCC i can simply say
The kernel already has all the information needed; its header information and associated data structures are in memory at the image base address. It can obtain the locations and sizes of all the sections there.
To provide a little more context, this is a small snippet from our system: