Page 1 of 1

ASM Bootloader to C Kernel

Posted: Sat Oct 19, 2002 12:19 pm
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

Re:ASM Bootloader to C Kernel

Posted: Sat Oct 19, 2002 12:47 pm
by grey wolf
once you have the kernel loaded to that memory location, yes, AFAIK, that's all you do.

Re:ASM Bootloader to C Kernel

Posted: Sat Oct 19, 2002 1:51 pm
by pskyboy
[attachment deleted by admin]

Re:ASM Bootloader to C Kernel

Posted: Sat Oct 19, 2002 8:44 pm
by Tom
try compiling and using the FritzOS code if compiling in linux, and you can just use my C kernel if you want