]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - tools/merge-srec.pl
1 # merge the code that initially executes out of flash with the RAM image
3 ($flashFile, $ramFile) = @ARGV;
5 open(FLASH
, $flashFile) or die "$flashFile: $!\n";
11 open(RAM
, $ramFile) or die "$ramFile: $!\n";
14 if(/^S3(..)(........)(.*)/) {
15 $addr = sprintf('%08X', hex($2) - 0x00200000 + 0x200);
16 print "S3$1$addr$3\n";