2023-08-24 11:58:55 +08:00

12 lines
121 B
Verilog

module SimpleAdd_1(
input [8:0] a, b,
output [8:0] c
);
assign c = a + b;
endmodule //SimpleAdd