litex/miscope/std.py
Florent Kermarrec f4e6cebab2 clean up
2014-08-03 11:44:27 +02:00

13 lines
203 B
Python

from migen.genlib.record import *
def dat_layout(dw):
return [
("stb", 1, DIR_M_TO_S),
("dat", dw, DIR_M_TO_S)
]
def hit_layout():
return [
("stb", 1, DIR_M_TO_S),
("hit", 1, DIR_M_TO_S)
]