Keegan Dent
Keegan Dent
I needed to change bit-endianness of a byte-stream and it took a little while to figure out what _seems_ to be the simplest way to do this. Maybe it could...
I'm using the vivado backend initialized with the following code block ```python backend = get_edatool(tool)(edam=edam, work_root=proj_path, verbose=False) ``` The `verbose=False` seems to have no effect because of [these](https://github.com/olofk/edalize/blob/6114cbf6e6feb96d3cc699e9e452665cc0df7934/edalize/edatool.py#L466) [lines](https://github.com/olofk/edalize/blob/6114cbf6e6feb96d3cc699e9e452665cc0df7934/edalize/edatool.py#L470). There...
With the way the current Makefile is written, Synthesis, Implementation, etc. are not re-run when a Verilog parameter is changed in the `edam`. This is because the `.xpr` file is...
I've been strugging with a communication system that expects the bitstream to be "right-aligned". Basically the idea is to perform zero-padding on the left instead of the right. I also...
These modules are incredibly useful, but I'm a little unclear as to which of the two makes sense for a buffer. (I think what I want is a skid buffer,...