Add: nonworking serial port driver implementation

This commit is contained in:
xamidev
2024-05-20 21:48:48 +02:00
parent 841dee9e18
commit aca525d3ce
11 changed files with 145 additions and 45 deletions

View File

@@ -1,8 +1,10 @@
#include "stdio.h"
#include "serial.h"
int kmain(int retvalue)
{
clear();
puts("hello\nbrave\nnew\nworld");
serial_write("hello", 1);
return retvalue;
}