Initial commit

This commit is contained in:
ssimnb 2026-03-04 07:19:48 +01:00
commit ef80f65fbf
136 changed files with 13728 additions and 0 deletions

1
include/drivers/ahci.h Normal file
View file

@ -0,0 +1 @@
void ahci_init();

3
include/drivers/pmt.h Normal file
View file

@ -0,0 +1,3 @@
#include <stdint.h>
int pmt_init();
void pmt_delay(uint64_t us);

8
include/drivers/serial.h Normal file
View file

@ -0,0 +1,8 @@
#include <stdint.h>
void serial_write(uint8_t data);
uint8_t serial_read();
void serial_print(char *str);
void serial_init();