1
0
mirror of synced 2026-01-30 05:44:00 +00:00
Files
YosysHQ.yosys/tests/asicworld/code_hdl_models_half_adder_gates.v
Clifford Wolf 7764d0ba1d initial import
2013-01-05 11:13:26 +01:00

15 lines
378 B
Verilog

//-----------------------------------------------------
// Design Name : half_adder_gates
// File Name : half_adder_gates.v
// Function : CCITT Serial CRC
// Coder : Deepak Kumar Tala
//-----------------------------------------------------
module half_adder_gates(x,y,sum,carry);
input x,y;
output sum,carry;
and U_carry (carry,x,y);
xor U_sum (sum,x,y);
endmodule