dead@root

This commit is contained in:
2024-05-25 19:20:33 +03:00
commit ea8f6b4ce0
39 changed files with 1769 additions and 0 deletions

10
io.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef IO_H
#define IO_H
#include <stdint.h>
void outb(uint16_t port, uint8_t val);
uint8_t inb(uint16_t port);
void io_wait(void);
#endif