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
ASM Bootloader to C Kernel
Re:ASM Bootloader to C Kernel
once you have the kernel loaded to that memory location, yes, AFAIK, that's all you do.
Re:ASM Bootloader to C Kernel
try compiling and using the FritzOS code if compiling in linux, and you can just use my C kernel if you want