cc_lerp_csa_ha1.v
516 Bytes
////////////////////////////////////////////////////////////////////////
//
// Project Reality
//
// module: cc_lerp_csa_ha1
// description: Half adder for csa tree for lerp for color combine unit.
// 1 bit.
//
// designer: Phil Gossett
// date: 6/25/94
//
////////////////////////////////////////////////////////////////////////
module cc_lerp_csa_ha1 (a, b, s, co);
input a;
input b;
output s;
output co;
xo02d1h s0 (.z(s), .a1(a), .a2(b));
an02d1h c0 (.z(co), .a1(a), .a2(b));
endmodule // cc_lerp_csa_ha1