mirror of
https://github.com/AsahiLinux/m1n1
synced 2025-02-25 03:47:16 +00:00
A lot of these are broken/out of date with the current code, but it's good to have them committed... Signed-off-by: Asahi Lina <lina@asahilina.net>
15 lines
459 B
Python
15 lines
459 B
Python
#!/usr/bin/env python3
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
import sys, pathlib, time
|
|
sys.path.append(str(pathlib.Path(__file__).resolve().parents[1]))
|
|
|
|
from m1n1.constructutils import *
|
|
from m1n1.fw.agx import initdata
|
|
|
|
#for v in initdata.__all__:
|
|
for v in initdata.__dict__:
|
|
struct = getattr(initdata, v)
|
|
if isinstance(struct, type) and issubclass(struct, ConstructClass) and struct is not ConstructClass:
|
|
print(struct.to_rust())
|
|
print()
|