vi_lerp_csa_ha1.v 577 Bytes
////////////////////////////////////////////////////////////////////////
//
// 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.1 2002/03/28 00:26:14 berndt Exp $

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

input a;
input b;

output s;
output co;

xo02d1 s0 (.z(s),  .a1(a), .a2(b));
an02d1 c0 (.z(co), .a1(a), .a2(b));

endmodule // vi_lerp_csa_ha1