bl_lerp_faso.v 517 Bytes
////////////////////////////////////////////////////////////////////////
//
// Project Reality
//
// module:	bl_lerp_faso
// description:	Full adder for csa tree for lerp for blend unit.
//		Sum out only. 1 bit.
//
// designer:	Phil Gossett
// date:	8/12/94
//
////////////////////////////////////////////////////////////////////////

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

input a;
input b;
input ci;

output s;

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

endmodule // bl_lerp_faso