Parser-Verilog
Parser-Verilog copied to clipboard
Got syntax error on using '&' or '~'
trafficstars
module and_gate ( input a, input b, output out ); assign out = a & b;
endmodule