o make crc an 8mb game

o add rand garbage in banks 3-8 and banks 9-16
This commit is contained in:
optixx
2009-04-26 16:22:41 +02:00
parent aa29d483eb
commit 096ad71b4e
5 changed files with 22 additions and 13 deletions

View File

@@ -43,11 +43,25 @@ debugger:
$(EMU_DEBUG) $(APP)
upload:
ucon64 $(APP)
ucon64 -chk $(APP)
cp -rv $(APP) /Volumes/SNES
sync
diskutil unmount /Volumes/SNES
rand:
dd if=/dev/urandom of=tmp.rand bs=32k count=6
dd if=$(APP) of=tmp.app bs=32k count=2
cat tmp.app tmp.rand > $(APP)
rm tmp.rand tmp.app
ucon64 -chk $(APP)
rand16:
dd if=/dev/urandom of=tmp.rand bs=32k count=14
dd if=$(APP) of=tmp.app bs=32k count=2
cat tmp.app tmp.rand > $(APP)
rm tmp.rand tmp.app
ucon64 -chk $(APP)
crc:
python ../../scripts/crc_xmodem.py $(APP)