fixing the remaining issues in the kernel directory

This commit is contained in:
2025-06-16 15:13:37 -07:00
parent 69762b6650
commit 109e554524
11 changed files with 422 additions and 60 deletions

View File

@@ -0,0 +1,14 @@
#ifndef DISPLAY_H
#define DISPLAY_H
#include <stdint.h>
#define VGA_PORT 0x3C0 // Base port for VGA
// Function prototypes
void init_display(void);
void enumerate_displays(void);
void set_display_mode(uint8_t mode);
void clear_display(void);
#endif // DISPLAY_H