8 lines
126 B
Bash
Executable file
8 lines
126 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -xe
|
|
fpfile="$1"
|
|
asmfile="${fpfile%.*}.asm"
|
|
binfile="${fpfile%.*}"
|
|
./fvmfpc -f $1 > ${asmfile}
|
|
fasmg ${asmfile}
|