mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 02:10:57 +11:00
5d33d165a2
Also, always end the CFS chain with a stop block. fixes #55 #56 #57
40 lines
1.1 KiB
Bash
Executable File
40 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Calls tools/emul/zasm/zasm in a convenient manner by wrapping specified
|
|
# paths to include in a single CFS file and then pass that file to zasm.
|
|
# Additionally, it takes a "-o" argument to set the initial ".org" of the
|
|
# binary. For example, "zasm.sh -o 4f < foo.asm" assembles foo.asm as if it
|
|
# started with the line ".org 0x4f00".
|
|
|
|
# readlink -f doesn't work with macOS's implementation
|
|
# so, if we can't get readlink -f to work, try python with a realpath implementation
|
|
ABS_PATH=$(readlink -f "$0" || python -c "import os; print(os.path.realpath('$0'))")
|
|
|
|
usage() { echo "Usage: $0 [-o <hexorg>] <paths-to-include>..." 1>&2; exit 1; }
|
|
|
|
org='00'
|
|
while getopts ":o:" opt; do
|
|
case "${opt}" in
|
|
o)
|
|
org=${OPTARG}
|
|
;;
|
|
*)
|
|
usage
|
|
;;
|
|
esac
|
|
done
|
|
shift $((OPTIND-1))
|
|
|
|
# wrapper around ./emul/zasm/zasm that prepares includes CFS prior to call
|
|
DIR=$(dirname "${ABS_PATH}")
|
|
ZASMBIN="${DIR}/emul/zasm/zasm"
|
|
CFSPACK="${DIR}/cfspack/cfspack"
|
|
INCCFS=$(mktemp)
|
|
|
|
"${CFSPACK}" -p "*.h" -p "*.asm" -p "*.bin" "$@" > "${INCCFS}"
|
|
|
|
"${ZASMBIN}" "${org}" "${INCCFS}"
|
|
RES=$?
|
|
rm "${INCCFS}"
|
|
exit $RES
|