console vga stuff

This commit is contained in:
2026-07-14 17:40:30 -05:00
parent 454de8feed
commit 6a79a20cf6
15 changed files with 456 additions and 559 deletions

View File

@@ -0,0 +1,12 @@
#ifndef D_SERIAL_H
#define D_SERIAL_H
#include <stdint.h>
void init_serial();
void print_serial_hex(uint32_t val);
void print_serial(const char* str);
void write_serial(char a);
int is_transmit_empty();
#endif