litex/examples/basic/record.py

24 lines
528 B
Python
Raw Normal View History

from migen.fhdl.std import *
2013-04-01 15:53:33 -04:00
from migen.fhdl import verilog
from migen.genlib.record import *
L = [
("position", [
("x", 10, DIR_M_TO_S),
("y", 10, DIR_M_TO_S),
]),
("color", 32, DIR_M_TO_S),
("stb", 1, DIR_M_TO_S),
("ack", 1, DIR_S_TO_M)
2013-04-01 15:53:33 -04:00
]
class Test(Module):
def __init__(self):
master = Record(L)
slave = Record(L)
self.comb += master.connect(slave)
2013-04-01 15:53:33 -04:00
print(verilog.convert(Test()))
print(layout_len(L))
print(layout_partial(L, "position/x", "color"))