mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
9 lines
107 B
Bash
Executable File
9 lines
107 B
Bash
Executable File
fname=$(mktemp)
|
|
|
|
for i in *.asm; do
|
|
../../rgbasm $i >$fname 2>&1
|
|
mv -f $fname ${i%.asm}.out
|
|
done
|
|
|
|
exit 0
|