Espresso 0.0.1b

This commit is contained in:
2025-06-27 14:48:06 -05:00
parent fca025a9bf
commit c336584114
39 changed files with 2676 additions and 936 deletions

10
lib/time.c Normal file
View File

@ -0,0 +1,10 @@
#include <drivers/pit.h>
#include <port_io.h>
#include <time.h>
void ksleep(uint64_t millis)
{
pit_sleep(millis);
}