diff options
| author | Kai Gunger <kgunger12@gmail.com> | 2026-07-11 15:10:47 -0400 |
|---|---|---|
| committer | Kai Gunger <kgunger12@gmail.com> | 2026-07-11 15:10:47 -0400 |
| commit | 71fd03b37ae0fe5e1f252c732395e40ded8e089d (patch) | |
| tree | ede7713feac88e04b0eaaacb2205ca7101908d61 /setup.sh | |
Initial commit, bring existing tnslc from tnsl-lang
Diffstat (limited to 'setup.sh')
| -rwxr-xr-x | setup.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/setup.sh b/setup.sh new file mode 100755 index 0000000..1603406 --- /dev/null +++ b/setup.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +nasm -f elf64 -g -o stuck/tnslc.o stuck/tnslc.asm +gcc -g -o stuck/tnslc stuck/tnslc.o + |