Espresso 0.0.1a

This commit is contained in:
2025-06-17 15:50:07 -05:00
parent eeea3b2d86
commit fca025a9bf
24 changed files with 1080 additions and 600 deletions

13
lib/stdlib.c Normal file
View File

@ -0,0 +1,13 @@
#include <drivers/pit.h>
#include <stdlib.h>
extern bool pit_initialized;
void sleep(uint64_t millis)
{
if (pit_initialized)
{
pit_sleep(millis);
}
}