BarinkOS/kernel/drivers/serial/serial.cpp
Nigel dea8ab7d71 Improved build system
Added new entries to .gitignore
Moved away from source directory as central spot for all source code
2023-02-20 00:29:06 +01:00

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!
}