bl_lerp_haso.v 597 Bytes
// Module instances modified by /home/rws/workarea/rf/sw/bbplayer/tools/necprimfix 
//
//    1 instance of xo02d1h changed to j_xo02.
//

////////////////////////////////////////////////////////////////////////
//
// Project Reality
//
// module:	bl_lerp_haso
// description:	Half adder for csa tree for lerp for blend unit.
//		Sum out only. 1 bit.
//
// designer:	Phil Gossett
// date:	8/12/94
//
////////////////////////////////////////////////////////////////////////

module bl_lerp_haso (a, b, s);

input a;
input b;

output s;

j_xo02 xa (.a1(b), .a2(a), .z(s));

endmodule // bl_lerp_haso