2015-10-10 12:59:23 +00:00
|
|
|
#include <output.hpp>
|
|
|
|
#include <serial.hpp>
|
2015-10-10 13:39:32 +00:00
|
|
|
namespace MTGosHAL {
|
2015-10-10 12:59:23 +00:00
|
|
|
void main() {
|
2015-10-10 13:39:32 +00:00
|
|
|
Serial serialOUT(115200);
|
2015-10-10 12:59:23 +00:00
|
|
|
serialOUT << "This is the debug output of MTGos\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
extern "C" void init() {
|
|
|
|
MTGosHAL::main();
|
|
|
|
}
|
|
|
|
extern "C" void __cxa_pure_virtual() {
|
|
|
|
for(;;);
|
|
|
|
}
|
|
|
|
|