Add basic vga kernel module

This commit is contained in:
2025-11-19 21:23:25 +01:00
parent 5ac82c308d
commit f87b00b46f
14 changed files with 108 additions and 52 deletions

9
scripts/build_js.js Executable file
View File

@@ -0,0 +1,9 @@
#! /usr/bin/env bun
import { readFileSync, writeFileSync } from "fs";
writeFileSync(
"build/index.js",
readFileSync("build/index.js", "utf-8")
.replaceAll("let ", "var ")
.replaceAll("const ", "var ")
);