tf_lerp_csa_ha2.v 652 Bytes
////////////////////////////////////////////////////////////////////////
//
// Project Reality
//
// module:	tf_lerp_csa_ha2
// description:	Half adder for csa tree for lerp for texture filter unit.
//		2 bits.
//
// designer:	Phil Gossett
// date:	6/25/94
//
////////////////////////////////////////////////////////////////////////

module tf_lerp_csa_ha2 (a, b, s, co);

input [1:0] a;
input [1:0] b;

output [1:0] s;
output [1:0] co;

xo02d1h s0 (.z(s[0]),  .a1(a[0]), .a2(b[0]));
an02d1h c0 (.z(co[0]), .a1(a[0]), .a2(b[0]));
xo02d1h s1 (.z(s[1]),  .a1(a[1]), .a2(b[1]));
an02d1h c1 (.z(co[1]), .a1(a[1]), .a2(b[1]));

endmodule // tf_lerp_csa_ha2