I tried fiddling with the RAM dumps according to mx3's directions. This is from an a570is 1.00e:
wine find_diffs crw_0004.jpg crw_0005.jpg 10 6400
The last 3 lines of find_diffs output are the ones with the highest "bytes" values:
(0x00656100 + 0x1900 = 0x00657A00) bytes: 3CA50
(0x006D4A00 + 0x1900 = 0x006D6300) bytes: 3CA50
(0x00753300 + 0x1900 = 0x00754C00) bytes: 3CA50
So, if I'm not mistaken, the addresses are 0x00657A00 0x006D6300 0x00754C00 or 0x00656100 0x006D4A00 0x00753300 without the 0x1900 offset.
zzz.bat puzzles me a bit, since find_u32s.exe says
usage: find_diffs <input file 1 name> <offset> <hex1> <hex2> <hex3>
but zzz.bat has 3 extra argument addresses for the 610.refs output, with 0x10000000 offset to the other 3 args.
So after half a dozen failed attempts to form a proper command line, I ran
wine find_u32s crw_0004.jpg 0x00657A00 0x006D6300 0x00754C00 0x10657A00 0x106D6300 0x10754C00
and finally got some output

[0x0065C6CC] : 10657A00
[0x0065C6D0] : 106D6300
[0x0065C6D4] : 10754C00
[0x0065C73C] : 10657A00
[0x0065DC00] : 10754C00
[0x0065DC04] : 10754C00
[0x0065DC88] : 10657A00
[0x006A9A30] : 10754C00
[0x0070C57C] : 10657A00
[0x0071DFD4] : 10657A00
[0x0095A108] : 10657A00
[0x0096A1E0] : 106D6300
[0x0096A1E4] : 106D6300
Will this be of any use?