bl_lerp_ha1.v
679 Bytes
// Module instances modified by /home/rws/workarea/rf/sw/bbplayer/tools/necprimfix
//
// 1 instance of an02d1h changed to j_an02.
// 1 instance of xo02d1h changed to j_xo02.
//
////////////////////////////////////////////////////////////////////////
//
// 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;
j_xo02 s0 (.z(s), .a1(a), .a2(b));
j_an02 c0 (.z(co), .a1(a), .a2(b));
endmodule // bl_lerp_ha1