Update rtio.sed.output_driver

pull/1/head
Donald Sebastian Leung 2020-10-27 13:45:40 +08:00
parent 160ac76ee7
commit f6fda8ac4a
1 changed files with 2 additions and 1 deletions

View File

@ -35,7 +35,8 @@ class OutputDriver(Elaboratable):
for lane_data in self.lane_datas:
lane_data.valid.reset_less = True
lane_data.collision.reset_less = True
lane_data.payload.reset_less = True
for field, _ in layout_on_payload:
getattr(lane_data.payload, field).reset_less = True
self.en_replaces = [channel.interface.o.enable_replace for channel in channels]
def elaborate(self, platform):