jackylinpda
Results
2
issues of
jackylinpda
In my current design, input data width is 256bit. In deflate.v, the input i_data & output o_byte are 8bit. How can I extend the data bus to 256bit?
I try to add "after" support via addSimpleProcedure, but it doesn't work: ``` const sleep = (ms) => { return new Promise(resolve => setTimeout(resolve, ms)); } const after = async...