tf_lerp_csa_faco.v
642 Bytes
////////////////////////////////////////////////////////////////////////
//
// 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;
nd02d1 ma (.a1(a), .a2(b), .zn(maja));
nd02d1 mb (.a1(b), .a2(ci), .zn(majb));
nd02d1 mc (.a1(ci), .a2(a), .zn(majc));
nd03d1 maj (.a1(maja), .a2(majb), .a3(majc), .zn(co));
endmodule // tf_lerp_csa_faco