mirror of
https://github.com/zachjs/sv2v.git
synced 2026-09-02 02:17:13 +02:00
- Trace comments cover module items, decls, and stmts - Added pseudo-lexer to Alex parser for monadic Position production - Added Position to every DeclToken - Removed Comment PackageItem - Added CommentStmt and CommentDecl - Fixed traversal skipping outer MIAttr ModuleItems - Generally cleaned up Parser modules
8 lines
118 B
Verilog
8 lines
118 B
Verilog
module top;
|
|
integer x = 0;
|
|
initial repeat (4) begin
|
|
x = x + 1;
|
|
$display(x);
|
|
end
|
|
endmodule
|