implemented basic keyboard input getting

This commit is contained in:
2025-03-14 18:32:01 +03:00
parent d5b504e815
commit ab775bd958
6 changed files with 72 additions and 15 deletions
+9
View File
@@ -0,0 +1,9 @@
#ifndef UTILS_H
#define UTILS_H
#include "../include/types.h"
uint8 inportb(uint16 _port);
void outportb(uint16 _port, uint8 _data);
#endif