Squash commits for public release

This commit is contained in:
2025-02-12 09:54:05 -05:00
commit 7118adc514
1108 changed files with 80873 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#ifndef _KERNEL_DRIVERS_SERIAL_UART_API_H
#define _KERNEL_DRIVERS_SERIAL_UART_API_H
#include <libkern/types.h>
struct boot_args;
void uart_setup(struct boot_args* boot_args);
int uart_write(uint8_t data);
int uart_read(uint8_t* data);
#endif //_KERNEL_DRIVERS_SERIAL_UART_API_H