Ronald Burkey
Ronald Burkey
The compiler reports that numerous functions are "not declared in this scope". Most of the problems are easy to fix — or at least, the error messages from the compiler...
The calculation of `final_width` and `final_height` in `set_nice_windowsize` can result in `float` results, which cause `self.resize` to fail. Adding `math.ceil` to the calculation fixes this. I observed the problem in...
(Environment: Windows 11, GTKWave 3.3.100 as installed by the iverilog+gtkwave installer found [here](https://bleyer.org/icarus/).) I have two transaction filters which I'm using fine with GTKWave in Linux and Mac OS, and...
When converting a shell script to a batch file, no redirect is processed correctly. For example, my shell script contains the redirects ...command1... &> /dev/null ...command2... > module.v ...command3... <...
While I understand that you probably cannot parse and convert every possible expression that appears in a shell-script conditional like if [ ...expression...] then ... statements... fi it seems to...
If the original shell script does _not_ have the file extension ".sh" but rather has no file extension, the batch file that's created does not have the extension ".bat", but...
(Using Linux Mint 22, Python 3.12.3.) I followed the instructions given in the README, literally: curl -LO https://archive.org/download/ia-pex/ia chmod +x ia ./ia --help The following error messages resulted: Traceback (most...