soc/interconnect/stream: don't use reset less on last and first signals (not reseting...
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Thu, 12 Oct 2017 09:30:56 +0000 (11:30 +0200)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Thu, 12 Oct 2017 09:30:56 +0000 (11:30 +0200)
litex/soc/interconnect/stream.py

index 4d8f89dd1351886f4f84dd8f67fce448f2e9c733..4c56b06ef94cedea0a6dc43f8dc7c2a488ffb87d 100644 (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))
         ]