mirror of
https://github.com/YosysHQ/yosys
synced 2026-06-02 23:28:00 +00:00
5 lines
66 B
Verilog
5 lines
66 B
Verilog
module test(input in, output out);
|
|
|
|
assign out = -in;
|
|
|
|
endmodule
|