From 24cc7d08d996cf4f59259c2fdd9ad282f6d63281 Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Mon, 9 Dec 2024 21:58:47 -0500 Subject: [PATCH] Add README with usage instructions --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..b49b3a0 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# Windows12 +A C-like compiled programming language implemented in Haskell. + +## Usage +```shell +cabal run windows12 out.ll +llc out.ll -o out.s +gcc out.s -o out +./out +```