Udi Finkelstein
Udi Finkelstein
Here is a Windows port of the script. The original version had a few issues: * STL binary files were not opened in raw mode, breaking them due CR/LF issues....
This PR requires the following PR to be applied before it can be used: https://github.com/admesh/stlsplit/pull/3 At the moment, it pulls my fork of stlsplit, that adds a static library build...
This PR allows creating a static library version of stlsplit. This makes it much easier to incorporate it in a cross compiled Windows build of ADMeshGUI.
Parser failed with the following VCD line: ```$var wire 1 - D [3] $end``` Reason was that VCDScanner.l contained the following: ```SCOPE_IDENTIFIER [a-zA-Z_][a-zA-Z_0-9\(\)]+``` Changing this to: ```SCOPE_IDENTIFIER [a-zA-Z_][a-zA-Z_0-9\(\)]*``` Fixed the...
@jameshanlon **Describe the bug** It seems that when a variable is reassigned multiple times in a blocking assignment inside a combinatorial always block, all assigments are treated as the same...
The signons.sqlite file used by the program contains the following fields: timeCreated, timeLastUsed, timePasswordChanged , but these are not imported into KeePass . By honoring these fields it would be...
The original Makefile used LDFLAGS to specify link linbaries. This caused the libraries to be specified BEFORE the object files referencing them, causing link failures. By using LDLIBS, all the...
This is the beginning of a PR to fix #1002 . It works for a simple testcase that fails otherwise, but I still see different failures (DirectedGraph issue, might be...
**Describe the bug** A full SoC run passes with `slang` but when it is ran with `slang-netlist` (no additional flags), it fails with: ``` Assertion 'T::isKind(kind)' failed in file /home/udif/git2/slang/tools/netlist/../../include/slang/ast/Statements.h,...
@jameshanlon **Describe the bug** It seems that `slang-netlist` ignores the assignment part of net declaration assignments. **To Reproduce** Please run the following file (test.v): ``` Verilog module t; reg a,...