@ -9,6 +9,9 @@
TextStream kout = TextStream(0, 80, 0, 12, true);
TextStream dout[8];
// Main function
// (the bootstrap processor starts here)}
extern "C" int main() {
@ -84,5 +87,9 @@ extern "C" int main_ap() {
s.write('a');
uint8_t from = static_cast<int>(LAPIC::getID()) * 20;
uint8_t to = from+20;
dout[LAPIC::getID()] = TextStream(from, to, 0, 6, true);
return 0;
}