GreenPiggy wrote:Hi, i'm new to OS development and did loads of tutorials on it. To bad there arn't much (maybe just 1) tutorials that make a complete c++ os from scratch.
That wouldn't really be
your os, then. There are tutorials about in C++, and
loads in C. You could simply take C tutorials and add C++ stuff (overloaded new and delete, constructors, template classes and so on...).
I found tutorials in loading c++ kernels from asm, these had mostly to do with a special file type like PE and ELF (isnt it possible with just a .bin file without file type?), loading these filetypes were way to advanced for me.
PE or ELF (I personally recommend ELF) is the way to go. If you use flat binary, you will find that your final kernel a) has problems with guessing where things are located and b) takes up loads of disk space due to zeroed sections being stored on disk.
The ELF loader part of my boot loader takes up 70 lines of ASM including comments and paragraph spacing to make things more readable. You could do it in a lot less. If loading and ELF file is too advanced, what happens when you get beyond "tutorial-stage" and want to develop drivers, for which you may only have a datasheet or reverse-engineering tool?
I just want to create a OS that hasnt much functions but could just load a c++ file compiled by gcc and linked ( not sure what linking does though).
If you don't understand what a linker does, you need to practice some more applications programming first.
What steps should i do to create this? A bootload is needed for sure , and I know a GDT would have to be loaded and Protective mode I guess.
As JohnnyTheDon says, you could use GRUB, but don't do that just because you are afraid of writing an ELF loader - you'll have to do that to load apps eventually anyway and I can't help feeling that in your case, practicing by writing a boot loader first could be a Good Idea(tm).
Cheers,
Adam