mirror of
https://github.com/annoyatron255/yosys4gal.git
synced 2025-05-06 14:43:11 +00:00
10 lines
113 B
Verilog
10 lines
113 B
Verilog
module adder_downto_upto (A, B, C);
|
|
|
|
input [2:0] A;
|
|
input [0:2] B;
|
|
output [3:0] C;
|
|
|
|
assign C = A + B;
|
|
|
|
endmodule
|