diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2024-03-12 02:39:20 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2024-03-12 02:39:20 -0400 |
commit | c778683318d4f6fe7d23f4af5f768fdddec596c1 (patch) | |
tree | a7091075fcfc6ab495b2181eb4f7e1ef74c72274 /tests | |
parent | f0d47495c43299be7c365d8d8121ffb8086ab9cd (diff) |
test readme
Diffstat (limited to 'tests')
-rw-r--r-- | tests/README.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/README.md b/tests/README.md new file mode 100644 index 0000000..b32c706 --- /dev/null +++ b/tests/README.md @@ -0,0 +1,14 @@ +This is a folder of all current tests for tnsl. + +Each compiled program should return a status of 69. + +To compile: + +First run ./build.sh in the parent directory to generate the compiler +Second make sure you have nasm and gcc installed + + ../ctc <file to compile> + nasm -f elf64 -o out.o out.asm + gcc out.o + +The final executable should be in this directory called "a.out" |