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

View File

@ -3,7 +3,10 @@
#include <types.h>
void pit_init(uint32_t freq);
void sleep(uint32_t millis);
extern volatile uint64_t pit_ticks;
void pit_init(void);
void pit_handler(void);
void pit_sleep(uint64_t ms);
#endif

View File

@ -6,4 +6,7 @@
void keyboard_init(void);
void keyboard_handler(void);
char get_char(void);
char* get_string(void);
#endif

View File

@ -1,11 +0,0 @@
#ifndef _TIMER_H
#define _TIMER_H
#include <stdint.h>
extern volatile uint32_t tick_count;
void timer_sleep(uint32_t ms);
void pit_init(uint32_t frequency);
#endif