We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 916f8a4 commit c792fa6Copy full SHA for c792fa6
2 files changed
src/cpu/syscall.c
@@ -1,5 +1,6 @@
1
#include "acpi_power.h"
2
#include "framebuffer.h"
3
+#include "heap.h"
4
#include "idt.h"
5
#include "power_plane.h"
6
#include "sched.h"
@@ -10,6 +11,7 @@
10
11
#include "timer.h"
12
#include "trace_forge.h"
13
#include "types.h"
14
+#include "util.h"
15
#include "vfs.h"
16
17
#define SYS_COPY_LIMIT 4096u
src/drivers/vga.c
@@ -7,7 +7,7 @@ static uint16_t* const vga_buffer = (uint16_t*)0xB8000;
7
static const uint8_t vga_width = 80;
8
static const uint8_t vga_height = 25;
9
-static void vga_clear(uint8_t color) {
+void vga_clear(uint8_t color) {
uint16_t blank = (uint16_t)' ' | ((uint16_t)color << 8);
for (uint32_t i = 0; i < (uint32_t)vga_width * vga_height; ++i) {
vga_buffer[i] = blank;
0 commit comments