I am following this tutorial in LINUX.
How to compile and load C kernel from gcc in elf format and load it from our own boot Loader?
Do I need to study elf format specifications to load kernel from boot loader in assembly?
Hello I am following this awsome series in LINUX (ubuntu 16.04), until now I have sucessfully run boot loader stage 1 but there is some issue in loading stage 2 in bochs (It works fine in virtual box though). here is bootloader stage one code: bits 16 org 0 ;we will set segments later start: jmp mai...