Add poly1305 and synthesis test

Wow this does not come even close to passing timing. Need to be smarter
This commit is contained in:
Byron Lathi
2025-07-05 07:30:18 -07:00
parent 7f91a8af32
commit 2b57079205
7 changed files with 272 additions and 29 deletions

View File

@@ -20,7 +20,7 @@ class TB:
cocotb.start_soon(Clock(self.dut.i_clk, CLK_PERIOD, units="ns").start())
self.s_data_axis = AxiStreamSource(AxiStreamBus.from_prefix(dut.s_data_axis, ""), dut.i_clk, dut.i_rst)
self.s_data_axis = AxiStreamSource(AxiStreamBus.from_prefix(dut, ""), dut.i_clk, dut.i_rst)
async def cycle_reset(self):
await self._cycle_reset(self.dut.i_rst, self.dut.i_clk)