mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
7 lines
101 B
Bash
7 lines
101 B
Bash
fname=$(mktemp)
|
|
|
|
for i in *.asm; do
|
|
../../rgbasm $i >$fname 2>&1
|
|
diff -u $fname ${i%.asm}.out
|
|
done
|