shithub: rgbds

ref: 720ae59af856641babb2da019cc64b2dbfeabe92
dir: /test/asm/update-refs.sh/

View raw version
fname=$(mktemp)

for i in *.asm; do
	../../rgbasm $i >$fname 2>&1
	mv -f $fname ${i%.asm}.out
done

exit 0