Maarten Brock
Maarten Brock
Hello Tom, Thanks. I hadn't installed myhdl with --user, but that shouldn't be a problem, I guess. Instead I ran pip install as Administrator. This also shows I'm on Windows,...
Thanks again, So we cannot write and read at the same time, right? That's a pity. Does ```o_iprogress``` start at 1? Or should I only write at addresses
I have another question: ```make``` requires python3.6 and I happen to have 3.5 installed. Are you (or myhdl) using anything 3.6 specific? It didn't seem so after I modified it....
Would you consider to rename reset to resetn as it appears to be active-low?
My preference is active-high, but active-low with renaming to resetn is okay as well. The current situation is confusing.
I'm getting lost. You wrote: > ```o_iprogress``` indicates the current position of the deflate input reader. You need that if you stream the input in a circular input buffer like...
The Vivado AXI article is about AXI-lite, not AXI-Stream. AXI-Stream is a much simpler protocol. Further, I've never used that core, but always wrote my own AXI-lite slave core which...
The generated VHDL deflate.vhd has a lot of bugs: - NEXT is a reserved VHDL keyword, and so is DISTANCE - static is a redefinition of STATIC in VHDL -...
It looks like the generated vhdl is beyond repair. Just for the fun of it, open deflate.vhd in Vivado and see all the red markers. I have now declared a...
I think ```bramread()``` can be removed as it seems it is not used. And the enumeration of states ```IDLE, WRITE,``` etc. should be initialized with ```range(5)``` instead of 6 now....