tf_lerp_csa_faco.v 826 Bytes
// Module instances modified by /home/rws/workarea/rf/sw/bbplayer/tools/necprimfix 
//
//    3 instances of nd02d1 changed to j_nd02.
//    1 instance of nd03d1 changed to j_nd03.
//

////////////////////////////////////////////////////////////////////////
//
// Project Reality
//
// module:	tf_lerp_csa_faco
// description:	Full adder for csa tree for lerp for texture filter unit.
//		Carry out only. 1 bit.
//
// designer:	Phil Gossett
// date:	6/25/94
//
////////////////////////////////////////////////////////////////////////

module tf_lerp_csa_faco (a, b, ci, co);

input a;
input b;
input ci;

output co;

j_nd02 ma (.a1(a),  .a2(b),  .zn(maja));
j_nd02 mb (.a1(b),  .a2(ci), .zn(majb));
j_nd02 mc (.a1(ci), .a2(a),  .zn(majc));
j_nd03 maj  (.a1(maja), .a2(majb), .a3(majc), .zn(co));

endmodule // tf_lerp_csa_faco