litex/examples/using_record.py

20 lines
331 B
Python
Raw Normal View History

2012-01-06 05:20:44 -05:00
from migen.fhdl.structure import *
from migen.corelogic.record import *
2012-01-09 09:14:42 -05:00
L = [
2012-01-06 05:20:44 -05:00
("x", BV(10)),
("y", BV(10)),
("level2", [
("a", BV(5)),
("b", BV(5))
])
]
2012-01-09 09:14:42 -05:00
myrec = Record(L)
2012-01-06 05:20:44 -05:00
print(myrec.flatten())
s = myrec.subrecord("level2/a", "x")
print(s.flatten())
2012-01-09 09:14:42 -05:00
print(s.level2.layout())
2012-01-06 05:20:44 -05:00
myrec2 = myrec.copy()
print(myrec2.flatten())