8 lines
125 B
Verilog
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
|