mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-12-18 17:53:10 +00:00
20 lines
302 B
Python
20 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
|