New rewritten serial driver + dev interface

This commit is contained in:
2025-10-04 21:31:45 +02:00
parent 0117080b61
commit acbf051dbc
16 changed files with 139 additions and 16 deletions

View File

@ -6,6 +6,7 @@
#include "hal/hal.h"
#include "termdev.h"
#include "ps2kbdev.h"
#include "serialdev.h"
DevTable DEVTABLE;
@ -15,4 +16,5 @@ void dev_init(void) {
termdev_init();
ps2kbdev_init();
serialdev_init();
}