nixpkgs/pkgs/applications/science/logic/netlistsvg/test.v
Peder Bergebakken Sundt c49f338aeb netlistsvg: init at 1.0.2
2023-09-08 19:23:43 +00:00

8 lines
125 B
Verilog

module helloworld (
input wire[7:0] a,
input wire[7:0] b,
output wire[7:0] c,
);
assign c = a + b;
endmodule