diff options
author | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-08-18 00:12:16 +0200 |
---|---|---|
committer | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-08-18 00:39:02 +0200 |
commit | 082fbc76d01275c04fa507f64842085b301d31ab (patch) | |
tree | 2a64e93c1523ebd9af71340fcd3e5c8e3193e8b5 /run.sh | |
download | paradox-082fbc76d01275c04fa507f64842085b301d31ab.tar.xz |
initial commit
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" |