Store device structs in a dynamic list

This commit is contained in:
2025-10-03 22:25:16 +02:00
parent c0178a1405
commit 57ba9ff126
10 changed files with 44 additions and 24 deletions

11
ulib/dev.h Normal file
View File

@ -0,0 +1,11 @@
#ifndef ULIB_DEV_H_
#define ULIB_DEV_H_
#define DEV_TERMDEV 0
#define DEV_PS2KBDEV 1
#define DEV_TERMDEV_PUTCH 0
#define DEV_PS2KBDEV_READCH 0
#endif // ULIB_DEV_H_