From 17a27d445295bbaf7c7c470b1e4648635af2f0a3 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sun, 19 Nov 2023 19:59:53 +0200 Subject: first runnable test program + tests/pointer_literal.ek compiles down to very simple assembly that tasm can assemble and triscv run with correct results. Whopee + Did notice that void return functions should still have implicit return statements added --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 1e8901a..142a575 100644 --- a/src/main.c +++ b/src/main.c @@ -50,7 +50,7 @@ static void usage() int main(int argc, char *argv[]) { int opt; - const char *output = "e.out"; + const char *output = "e.t"; while ((opt = getopt(argc, argv, "hI:o:")) != -1) { switch (opt) { case 'o': -- cgit v1.3