|
|
|
|
@ -69,8 +69,6 @@ extern "C" int main() {
|
|
|
|
|
<< " -> 0x1badcafefee1dead" << endl;
|
|
|
|
|
kout << "smiley: " << static_cast<char>(1) << endl;
|
|
|
|
|
|
|
|
|
|
dout[0] << "test main!\n";
|
|
|
|
|
|
|
|
|
|
/* Start application processors
|
|
|
|
|
* To avoid unexpected behaviour, make sure that interrupts are not
|
|
|
|
|
* enabled before the APs are booted. Otherwise it might interfere with the
|
|
|
|
|
@ -102,7 +100,8 @@ extern "C" int main_ap() {
|
|
|
|
|
//uint8_t from = static_cast<int>(LAPIC::getID()) * 20;
|
|
|
|
|
//uint8_t to = from+20;
|
|
|
|
|
//dout[LAPIC::getID()] = TextStream(from, to, 0, 6, false);
|
|
|
|
|
dout[LAPIC::getID()] << "test\n";
|
|
|
|
|
dout[LAPIC::getID()] << "test\n" << flush;
|
|
|
|
|
dout[LAPIC::getID()] << static_cast<int>(LAPIC::getID()) << flush;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|