Files
sv2v/test/basic/inc.v
T
Zachary Snow dd0eb5981d added source trace comments
- 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
2020-01-30 22:17:17 -05:00

8 lines
118 B
Verilog

module top;
integer x = 0;
initial repeat (4) begin
x = x + 1;
$display(x);
end
endmodule