Now, the kernel sets the vtable for the debug-output/serial output correct (For some reason it haven't before)

This commit is contained in:
Morten Delenk 2015-10-10 15:39:32 +02:00
parent 6f6ff0d773
commit d1f5c188bb

View file

@ -1,9 +1,8 @@
#include <output.hpp>
#include <serial.hpp>
namespace MTGosHAL {
Serial serialOUT(115200);
namespace MTGosHAL {
void main() {
serialOUT=Serial(115200);
Serial serialOUT(115200);
serialOUT << "This is the debug output of MTGos\n";
}
}