2) It would be nice if I had a utility that could make an ascii dump "fingerprint" of sorts of a given romset that logged each individual rom and it's compressed size.
Well, I just found a solution for this one that I think might work pretty good with a little tweaking:
Using the PKUnzip for DOS ver 2.50...
pkunzip -vn *.zip > ziplog.txt
This generates a file full of blocks of text that look like this...
Searching ZIP: 1941.ZIP
Length Method Size Ratio Date Time CRC-32 Attr Name
------ ------ ----- ----- ---- ---- -------- ---- ----
131072 DeflatN 36400 73% 03-23-2001 10:50 9deb1e75 --w- 41e_30.rom
131072 DeflatN 29134 78% 03-23-2001 10:50 df201112 --w- 41e_31.rom
131072 DeflatN 64791 51% 03-23-2001 10:50 d63942b3 --w- 41e_35.rom
131072 DeflatX 62222 53% 03-23-2001 10:50 816a818f --w- 41e_36.rom
65536 DeflatX 17727 73% 03-23-2001 10:50 0f9d8527 --w- 41_09.rom
131072 DeflatX 116447 12% 03-23-2001 10:50 d1f15aeb --w- 41_18.rom
131072 DeflatX 81400 38% 03-23-2001 10:50 15aec3a6 --w- 41_19.rom
524288 DeflatN 82665 85% 03-23-2001 10:50 4e9648ca --w- 41_32.rom
524288 DeflatN 263921 50% 03-23-2001 10:50 ff77985a --w- 41_gfx1.rom
524288 DeflatN 178690 66% 03-23-2001 10:50 983be58f --w- 41_gfx3.rom
524288 DeflatN 265126 50% 03-23-2001 10:50 01d1cb11 --w- 41_gfx5.rom
524288 DeflatN 179814 66% 03-23-2001 10:50 aeaa3509 --w- 41_gfx7.rom
------ ------ --- -------
3473408 1378337 61% 12
The only problem is that the individual blocks might not be in the same order.
Is there some way to sort the file list before feeding it into PKUnzip?