mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-07-10 05:46:45 -04:00
14f8d62e3e
* ROM is mismatching but functionally equivalent. * ROM does not shift, so any edits must use the same amount of bytecode. * Asset files such as stage setup and lang are not included yet (they are copied from the base ROM).
8 lines
160 B
Bash
Executable File
8 lines
160 B
Bash
Executable File
#!/bin/bash
|
|
|
|
size=$(stat --format="%s" $1)
|
|
|
|
printf "0: 1173 %.6x" $size | xxd -r -g0
|
|
|
|
cat $1 | tools/gzip --no-name --best | head --bytes=-8 | tail --bytes=+11
|