mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 09:28:12 +02:00
- support for additional assignment statements in loop initializations - greatly improved error messaging in these contexts - decl parser takes in the ending token; significant related refactoring - pass through elaboration system tasks - removed non-blocking assignment operator precedence hack - preliminary nosim test suite for features unsupported by iverilog
7 lines
140 B
Systemverilog
7 lines
140 B
Systemverilog
// pattern: block_start_2\.sv:4:9: Parse error: expected primary token or type
|
|
module top;
|
|
initial begin
|
|
= 1;
|
|
end
|
|
endmodule
|