mcmp {-s location1} {-d location1} {-l length} [-1 | -2 | -4]
Compares the contents of two ranges of memory (RAM, ROM, FLASH, etc).
Compare two buffers which match (result is quiet).
RedBoot> mfill -b 0x100000 -l 0x20 -p 0xDEADFACE RedBoot> mfill -b 0x200000 -l 0x20 -p 0xDEADFACE RedBoot> mcmp -s 0x100000 -d 0x200000 -l 0x20
Compare two buffers which don't match. Only the first non-matching element is displayed.
RedBoot> mcmp -s 0x100000 -d 0x200000 -l 0x30 -2 Buffers don't match - 0x00100020=0x6000, 0x00200020=0x0000