aboutsummaryrefslogtreecommitdiff
path: root/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'run.sh')
-rwxr-xr-xrun.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/run.sh b/run.sh
index c7c2e1a..d0eb509 100755
--- a/run.sh
+++ b/run.sh
@@ -1,6 +1,6 @@
#!/bin/bash
set -e
-./paradox < "$1" > "$1.asm"
+./paradox < "$1" > "/tmp/$1.asm"
nasm -f elf64 "/tmp/$1.asm" -o "/tmp/$1.o"
ld "/tmp/$1.o" -o "$1.bin"
./"$1.bin"