mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-22 14:43:08 +00:00
c648a517e3
Signed-off-by: Hector Martin <marcan@marcan.st>
19 lines
302 B
Python
19 lines
302 B
Python
|
|
import sys
|
|
from setup import *
|
|
|
|
p = 0x800000000
|
|
limit = u.base
|
|
block = 0x40000
|
|
|
|
while p < limit:
|
|
f = "mem/0x%x.bin" % p
|
|
if os.path.exists(f):
|
|
p += block
|
|
continue
|
|
|
|
print("dumping 0x%x..." % p)
|
|
|
|
data = iface.readmem(p, block)
|
|
open(f, "wb").write(data)
|
|
p += block
|