diff options
Diffstat (limited to 'run.sh')
-rwxr-xr-x | run.sh | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -0,0 +1,6 @@ +#!/bin/bash +set -e +./paradox < "$1" > "$1.asm" +nasm -f elf64 "/tmp/$1.asm" -o "/tmp/$1.o" +ld "/tmp/$1.o" -o "$1.bin" +./"$1.bin" |