mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-29 11:55:52 +00:00
5 lines
66 B
Verilog
5 lines
66 B
Verilog
module test(input in, output out);
|
|
|
|
assign out = -in;
|
|
|
|
endmodule
|