mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-12-20 18:53:08 +00:00
30 lines
611 B
Python
Executable file
30 lines
611 B
Python
Executable file
#!/usr/bin/env python3
|
|
# SPDX-License-Identifier: MIT
|
|
import sys, pathlib
|
|
sys.path.append(str(pathlib.Path(__file__).resolve().parents[1]))
|
|
|
|
from m1n1.setup import *
|
|
|
|
blacklist = []
|
|
|
|
print("Dumping address space...")
|
|
of = None
|
|
if len(sys.argv) > 1:
|
|
of = open(sys.argv[1],"w")
|
|
print("Also dumping to file %s")
|
|
|
|
p.iodev_set_usage(IODEV.FB, 0)
|
|
|
|
for i in range(0x230000000, 0x232000000, 0x4000):
|
|
if i in blacklist:
|
|
v = "%08x: SKIPPED"%(i<<16)
|
|
else:
|
|
a = i
|
|
d = p.read32(a)
|
|
v = "%08x: %08x"%(a, d)
|
|
print(v)
|
|
if of:
|
|
of.write(v+"\n")
|
|
|
|
if of:
|
|
of.close()
|