Implemented serial for basic debugging, Added MMU enable to kernel main

This commit is contained in:
2021-05-10 21:33:25 +01:00
parent 4008fc25e8
commit b41f6a380e
11 changed files with 296 additions and 34 deletions

View File

@ -0,0 +1,19 @@
#include "serial.h"
Serial Serial::init() {
// No clue what to setup yet!
return Serial();
}
void Serial::print(){
// Do nothing!
}
Serial::Serial(){
// Do nothing!
}
Serial::~Serial(){
// Do nothing!
}