Improve assembler: can now properly assemble lain.com

Bu işleme şunda yer alıyor:
Nero 2023-01-01 20:44:43 +00:00
ebeveyn 77b1ad7cef
işleme 5100d1d84e
5 değiştirilmiş dosya ile 2170 ekleme ve 91 silme

Dosyayı Görüntüle

@ -1,4 +1,7 @@
#!/bin/sh
outfile="$1"
infile="$2"
( awk -f host/asm.awk -v of=sym <"$infile"; cat "$infile") | awk -f host/asm.awk -v of=lst
listing="${outfile%.*}.lst"
( awk -f host/asm.awk -v of=sym <"$infile"; cat "$infile") | awk -f host/asm.awk -v of=lst >"$listing"
grep -A1 '\*\*\*\*' "$listing" && exit 1
cut -d' ' -f2 "$listing" | xxd -r -p >"$outfile"