You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
512 B
22 lines
512 B
10 years ago
|
import sys
|
||
|
|
||
|
assert len(sys.argv) == 4
|
||
|
|
||
|
with open(sys.argv[3], 'wb') as fout:
|
||
|
|
||
|
with open(sys.argv[1], 'rb') as f:
|
||
|
data_flash = f.read()
|
||
|
fout.write(data_flash)
|
||
|
print('flash ', len(data_flash))
|
||
|
|
||
|
pad = b'\xff' * (0x10000 - len(data_flash))
|
||
|
fout.write(pad)
|
||
|
print('padding ', len(pad))
|
||
|
|
||
|
with open(sys.argv[2], 'rb') as f:
|
||
|
data_rom = f.read()
|
||
|
fout.write(data_rom)
|
||
|
print('irom0text', len(data_rom))
|
||
|
|
||
|
print('total ', 0x10000 + len(data_rom))
|