mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-23 07:03:08 +00:00
7fb35a8533
Signed-off-by: Hector Martin <marcan@marcan.st>
19 lines
359 B
Python
19 lines
359 B
Python
import os, struct, sys, time
|
|
from proxy import *
|
|
from tgtypes import *
|
|
from proxyutils import *
|
|
from utils import *
|
|
from hv import HV
|
|
|
|
iface = UartInterface()
|
|
p = M1N1Proxy(iface, debug=False)
|
|
bootstrap_port(iface, p)
|
|
|
|
u = ProxyUtils(p)
|
|
mon = RegMonitor(u)
|
|
hv = HV(iface, p, u)
|
|
|
|
fb = u.ba.video.base
|
|
|
|
print("Base at: 0x%x" % u.base)
|
|
print("FB at: 0x%x" % fb)
|