1
0
mirror of synced 2026-01-25 20:06:27 +00:00
Files
YosysHQ.yosys/docs/resources/PRESENTATION_Prog/sigmap_test.v
2023-08-03 09:20:29 +12:00

4 lines
66 B
Verilog

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