Hello, you need to write a bootloader. I do not ask you to write for me, just explain to me his principle of work. For example, how it is loaded into memory, I still do not fully understand.
- For laboratory, this note is enough: creating your own loader . For serious things, it's better to watch grub sources, etc. - stanislav
- osdever.net/tutorials/view/hello-world-boot-loader - nullptr
|
1 answer
The first is the boot program, which is in the BIOS. After it checks the equipment (and maybe not only it depends on the PNZ itself), it selects the boot disk (one of those connected to the computer) and simply copies the first sector of the disk to the RAM, and transfers control to it.
There is a lot of useful information on this topic here: http://wasm.ru/article/260 and right there is a very good forum.
- oneFor this your / our UEFI, apparently, will not work anymore ... - aryndin
|