mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 17:45:33 +00:00
3 lines
107 B
Verilog
3 lines
107 B
Verilog
module SB_CARRY (output CO, input I0, I1, CI);
|
|
assign CO = (I0 && I1) || ((I0 || I1) && CI);
|
|
endmodule
|