tf_lerp_csa_haco.v 632 Bytes
// Module instances modified by /home/rws/workarea/rf/sw/bbplayer/tools/necprimfix 
//
//    1 instance of an02d1h changed to j_an02.
//

////////////////////////////////////////////////////////////////////////
//
// Project Reality
//
// module:	tf_lerp_csa_haco
// description:	Half adder for csa tree for lerp for texture filter unit.
//		Carry out only (no sum). 1 bit.
//
// designer:	Phil Gossett
// date:	6/25/94
//
////////////////////////////////////////////////////////////////////////

module tf_lerp_csa_haco (a, b, co);

input a;
input b;

output co;

j_an02 c0 (.a1(a), .a2(b), .z(co));

endmodule // tf_lerp_csa_haco