1
This commit is contained in:
churl
2022-06-05 16:57:59 +02:00
parent 8153375321
commit 973c76f010
3 changed files with 1 additions and 5 deletions

View File

@ -3,7 +3,6 @@
#include <stddef.h>
// NOTE: I added this file
// TODO: Make output toggleable
void TreeAllocator::init() {
this->free_start = (tree_block_t*)this->heap_start;

View File

@ -91,9 +91,6 @@ bool PIC::status(int irq) {
/* hier muss Code eingefuegt werden */
// TODO: How is IRQ2 handled (Slave PIC)?
// Does masking IRQ2 disable the whole slave?
unsigned char IMR;
if (irq < 8) {
// PIC 1

View File

@ -24,7 +24,7 @@ public:
void run() override {
while (true) {
scheduler.yield();
kout << "Idle!" << endl;
// kout << "Idle!" << endl;
}
}
};