// Module instances modified by /home/rws/workarea/rf/sw/bbplayer/tools/necprimfix // // 1 instance of an02d1h changed to j_an02. // 1 instance of xo02d1h changed to j_xo02. // //////////////////////////////////////////////////////////////////////// // // 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; j_xo02 s0 (.z(s), .a1(a), .a2(b)); j_an02 c0 (.z(co), .a1(a), .a2(b)); endmodule // cc_lerp_csa_ha1