mirror of
https://github.com/zachjs/sv2v.git
synced 2026-09-08 20:56:25 +02:00
8 lines
123 B
Systemverilog
8 lines
123 B
Systemverilog
(* a=1 *) module top;
|
|
(* foo="bar" *) logic x;
|
|
initial begin
|
|
x = 1;
|
|
$display(x);
|
|
end
|
|
endmodule
|