Nigel
13e9beea79
Folders now are alll lower case Started working on the implementation of the Virtual memory manager. Implemented allocate and free page funtionality for as far as I can atm. Implemented the
19 lines
227 B
C++
19 lines
227 B
C++
#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!
|
|
} |