Adder.v 178 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 module Adder(adderinput1, adderinput2, adderoutput); input[31:0] adderinput1, adderinput2; output[31:0] adderoutput; assign adderoutput = adderinput1 + adderinput2; endmodule