bl_lerp_ha1.v 496 Bytes
////////////////////////////////////////////////////////////////////////
//
// Project Reality
//
// module:	bl_lerp_ha1
// description:	Half adder for csa tree for lerp for blend unit.
//		1 bit.
//
// designer:	Phil Gossett
// date:	8/11/94
//
////////////////////////////////////////////////////////////////////////

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

input a;
input b;

output s;
output co;

xo02d1h s0 (.z(s),  .a1(a), .a2(b));
an02d1h c0 (.z(co), .a1(a), .a2(b));

endmodule // bl_lerp_ha1