11 lines
168 B
Bash
11 lines
168 B
Bash
|
# exit if anything fails
|
||
|
set -e
|
||
|
|
||
|
INPUT=$(realpath $1)
|
||
|
|
||
|
mkdir target
|
||
|
|
||
|
cd holey-bytes/hbasm
|
||
|
cat $INPUT | cargo run > ../../target/out
|
||
|
cd ../hbvm
|
||
|
cat ../../out | cargo run
|