I have a small build loader that I got from this Tutorial . The code for the bootloader can be found here . I want to know if C ++ can be run from this bootloader. I want to run a simple thing like this:
#include <iostream>
using namespace std;
int main () {
cout << "Hello World!\n";
return 0;
}
But, as I see it, this causes 2 problems. First, somehow the C ++ file must be included in the compiled bin file. Also #include <iostream>... Is the included iostream included in the compiled C ++ file or its dose, which should be included in some kind of library in the bootloader?
Thanks for any help as it really puzzles me.
source
share