soc/interconnect/stream: don't use reset less on last and first signals (not reseting these signals can cause troubles in some specific cases)

This commit is contained in:
Florent Kermarrec 2017-10-12 11:30:56 +02:00
parent eecd6a156e
commit db6c88bbef
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ class EndpointDescription:
full_layout = [
("valid", 1, DIR_M_TO_S),
("ready", 1, DIR_S_TO_M),
("first", 1, DIR_M_TO_S, True),
("last", 1, DIR_M_TO_S, True),
("first", 1, DIR_M_TO_S),
("last", 1, DIR_M_TO_S),
("payload", _make_m2s(self.payload_layout, True)),
("param", _make_m2s(self.param_layout, True))
]