From 80a5815731dafdb63712dc1d2df9de75cc3e1177 Mon Sep 17 00:00:00 2001 From: Greg Shuflin Date: Fri, 10 Jan 2025 03:47:52 -0800 Subject: [PATCH] Thousand line OS initial commit --- thousand-line-os/README.md | 3 +++ thousand-line-os/justfile | 11 +++++++++++ 2 files changed, 14 insertions(+) create mode 100644 thousand-line-os/README.md create mode 100644 thousand-line-os/justfile diff --git a/thousand-line-os/README.md b/thousand-line-os/README.md new file mode 100644 index 0000000..6326a4c --- /dev/null +++ b/thousand-line-os/README.md @@ -0,0 +1,3 @@ +# Thousand Line OS + +Aspirational. Following https://operating-system-in-1000-lines.vercel.app/en/ diff --git a/thousand-line-os/justfile b/thousand-line-os/justfile new file mode 100644 index 0000000..d42e46b --- /dev/null +++ b/thousand-line-os/justfile @@ -0,0 +1,11 @@ +_default: + @just --list + + + +run: + #!/usr/bin/env bash + # + QEMU=qemu-system-riscv32 + # Start QEMU + $QEMU -machine virt -bios default -nographic -serial mon:stdio --no-reboot