tf_lerp_csa_faso.v 675 Bytes
// Module instances modified by /home/rws/workarea/rf/sw/bbplayer/tools/necprimfix 
//
//    2 instances of xo02d1h changed to j_xo02.
//

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

module tf_lerp_csa_faso (a, b, ci, s);

input a;
input b;
input ci;

output s;

j_xo02 xa (.a1(b), .a2(a), .z(xora));
j_xo02 xb (.a1(xora), .a2(ci), .z(s));

endmodule // tf_lerp_csa_faso