ASM Bootloader to C Kernel

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.
Post Reply
pskyboy

ASM Bootloader to C Kernel

Post by pskyboy »

Hey Guys

I have a working bootloader and want to get it to launch into a C kernel. I have compiled the kernel to binary format at 0x100000. SO my question is how do i execute this from my bootloader do i literally just do jmp 0x100000 or do i have to do some other things?

My bootloader jumps to protected mode and allows more then 1mb of memory to be addressed.

Peter
grey wolf

Re:ASM Bootloader to C Kernel

Post by grey wolf »

once you have the kernel loaded to that memory location, yes, AFAIK, that's all you do.
pskyboy

Re:ASM Bootloader to C Kernel

Post by pskyboy »

[attachment deleted by admin]
Tom

Re:ASM Bootloader to C Kernel

Post by Tom »

try compiling and using the FritzOS code if compiling in linux, and you can just use my C kernel if you want
Post Reply