vi_lerp_csa_ha1.v 757 Bytes
// Module instances modified by /home/rws/workarea/rf/sw/bbplayer/tools/necprimfix 
//
//    1 instance of an02d1 changed to j_an02.
//    1 instance of xo02d1 changed to j_xo02.
//

////////////////////////////////////////////////////////////////////////
//
// Project Reality
//
// module:	vi_lerp_csa_ha1
// description:	Half adder for csa tree for lerp for video interface.
//		1 bit.
//
// designer:	Phil Gossett
// date:	10/9/94
//
////////////////////////////////////////////////////////////////////////

// $Id: vi_lerp_csa_ha1.v,v 1.2 2002/11/13 02:11:42 rws Exp $

module vi_lerp_csa_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 // vi_lerp_csa_ha1