diff options
-rwxr-xr-x | bootstrap.lua | 2 | ||||
-rwxr-xr-x | run.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap.lua b/bootstrap.lua index 4dac57f..04f33dd 100755 --- a/bootstrap.lua +++ b/bootstrap.lua @@ -330,7 +330,7 @@ ret io.write([[ global _start _start: -lea r12, [1000000+8*"$."] +lea r12, [stack+8*1000000] call fun_0 mov rax, 60 mov rdi, 0 @@ -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" |