Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 7 lines 125 B view raw
1module helloworld ( 2 input wire[7:0] a, 3 input wire[7:0] b, 4 output wire[7:0] c, 5); 6 assign c = a + b; 7endmodule