Initial commit

This commit is contained in:
Freywar Ulvnaudgari
2026-06-04 21:52:04 +03:00
commit fecf3b2e42
35 changed files with 2009 additions and 0 deletions
Executable
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -euo pipefail
debug_flags=()
if [[ ${1:-} == '--debug' ]] || [[ ${1:-} == '-d' ]]; then
debug_flags+=(-s -S)
fi
qemu-system-x86_64 \
"${debug_flags[@]}" \
-monitor stdio \
-drive file="build/os.img",format=raw,if=ide \
-no-reboot \
-d int