mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-27 21:42:06 +00:00
Scramble banks from the end of the ROM (#1273)
This is more likely to test edge cases, such as having content in banks with their highest bit set.
This commit is contained in:
@@ -122,7 +122,7 @@ for i in *.asm; do
|
||||
desired_binname=${i%.asm}.out.bin
|
||||
if [ -f "$desired_binname" ]; then
|
||||
"$RGBLINK" -o "$gb" "$o"
|
||||
rom_size=$(wc -c < "$desired_binname")
|
||||
rom_size=$(printf %s $(wc -c <"$desired_binname"))
|
||||
dd if="$gb" count=1 bs="$rom_size" >"$output" 2>/dev/null
|
||||
tryCmp "$desired_binname" "$output" gb
|
||||
(( our_rc = our_rc || $? ))
|
||||
|
||||
Reference in New Issue
Block a user