mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 00:30:55 +11:00
8 lines
256 B
Bash
8 lines
256 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# wrapper around ./emul/zasm/zasm that prepares includes CFS prior to call
|
||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
||
|
ZASMBIN="${DIR}/emul/zasm/zasm"
|
||
|
INCCFS="${DIR}/emul/zasm/includes.cfs"
|
||
|
"${ZASMBIN}" "${INCCFS}"
|