If you see my post history, i was learning Assembly and trying to develop an OS, then i remember that Linux(That i use) was developed in C, but i know C++, then i want to know how i can build a boot loader, that boots a compiled C++ source code and the second thing is: You can post the code of a Hello World OS in C++, just for use as template, after i will be as my own, and stop asking stupid questions only because i don't know the basics of Assembly. A normal Hello World is here:
Code: Select all
#include <iostream>
using namespace std;
int main() {
cout << "Hello, World";
return 0;
}
Thanks,
Nathan Paulino Campos