mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
13 lines
203 B
Python
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)
|
|
]
|