3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 01:24:10 +00:00
yosys/manual/PRESENTATION_Prog/sigmap_test.v
2014-06-22 12:50:29 +02:00

4 lines
66 B
Verilog

module test(input a, output x, y);
assign x = a, y = a;
endmodule