Add: working serial port output driver

This commit is contained in:
xamidev
2024-05-22 10:33:48 +02:00
parent aca525d3ce
commit 87c1a97d47
9 changed files with 46 additions and 350 deletions

View File

@@ -5,6 +5,9 @@ int kmain(int retvalue)
{
clear();
puts("hello\nbrave\nnew\nworld");
serial_write("hello", 1);
init_serial();
serial_puts("Hello, brave new world. This is a message to let you know that the kernel has started.\n");
serial_puts("This is a second message.\n");
return retvalue;
}