cleanup
This commit is contained in:
parent
98e1f635c8
commit
5200cf3c88
|
@ -16,7 +16,6 @@
|
|||
{
|
||||
default = pkgs.mkShell {
|
||||
buildInputs = [
|
||||
pkgs.qbe
|
||||
harec
|
||||
hare
|
||||
];
|
||||
|
|
37
pkgs/hare-as
37
pkgs/hare-as
|
@ -1,37 +0,0 @@
|
|||
set -o pipefail
|
||||
|
||||
function header() {
|
||||
echo
|
||||
echo
|
||||
echo "# ----------------------------------------------------------------"
|
||||
echo ".file \"$1\""
|
||||
echo "# ----------------------------------------------------------------"
|
||||
echo
|
||||
}
|
||||
|
||||
args=
|
||||
code=
|
||||
until [ $# -eq 0 ]; do
|
||||
case $1 in
|
||||
--)
|
||||
;;
|
||||
-o|-I|-arch)
|
||||
args="$args $1 $2"
|
||||
shift
|
||||
;;
|
||||
-*)
|
||||
args="$args $1"
|
||||
;;
|
||||
*)
|
||||
# file="$(fix_asm $1)"
|
||||
|
||||
# # IFS=$'\n'
|
||||
file=$(cat "$1")
|
||||
|
||||
code="$code$(header $1)"$'\n'"$file"
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
echo "jer"
|
||||
echo "$code" | fix_asm | as $args -
|
Loading…
Reference in a new issue