Stage 3 complete, (+ - * / binary operators implemented)

This commit is contained in:
2026-01-31 21:32:53 -05:00
parent 1d9ad824a6
commit 409c5938f9
11 changed files with 190 additions and 31 deletions

10
test
View File

@@ -1,9 +1,11 @@
#!/bin/bash
gcc $1.c
gcc $1.s -o my.out
nvim test.c
gcc -m32 test.c -o gcc.out
./.build/debug/rxcc test.c
gcc -m32 test.s -o rxcc.out
echo "GCC:"
./a.out
./gcc.out
echo $?
echo "RXCC"
./my.out
./rxcc.out
echo $?