mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Check all sections when testing BANK(). Add scripts to verify the tests and update the reference if needed. Signed-off-by: AntonioND <antonio_nd@outlook.com>
13 lines
270 B
Bash
13 lines
270 B
Bash
otemp=$(mktemp)
|
|
gbtemp=$(mktemp)
|
|
outtemp=$(mktemp)
|
|
|
|
RGBASM=../../rgbasm
|
|
RGBLINK=../../rgblink
|
|
|
|
$RGBASM -o $otemp bank-numbers.asm
|
|
$RGBLINK -o $gbtemp $otemp > $outtemp 2>&1
|
|
diff bank-numbers.out $outtemp
|
|
head -c 20 $gbtemp > $otemp 2>&1
|
|
diff bank-numbers.out.bin $otemp
|