diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-11-19 19:59:53 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-11-19 19:59:53 +0200 |
| commit | 17a27d445295bbaf7c7c470b1e4648635af2f0a3 (patch) | |
| tree | 2749eacfe577afc1902826a99a4437bfc8419f05 /src/main.c | |
| parent | 8f754f8b13e55e4bb92d72f105c5aaaba1754b7d (diff) | |
| download | ek-17a27d445295bbaf7c7c470b1e4648635af2f0a3.tar.gz ek-17a27d445295bbaf7c7c470b1e4648635af2f0a3.zip | |
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
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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': |
