vi_lerp_csa_haso.v
677 Bytes
// Module instances modified by /home/rws/workarea/rf/sw/bbplayer/tools/necprimfix
//
// 1 instance of xo02d1 changed to j_xo02.
//
////////////////////////////////////////////////////////////////////////
//
// Project Reality
//
// module: vi_lerp_csa_haso
// description: Half adder for csa tree for lerp for video interface.
// Sum out only. 1 bit.
//
// designer: Phil Gossett
// date: 10/9/94
//
////////////////////////////////////////////////////////////////////////
// $Id: vi_lerp_csa_haso.v,v 1.2 2002/11/13 02:11:42 rws Exp $
module vi_lerp_csa_haso (a, b, s);
input a;
input b;
output s;
j_xo02 xa (.a1(b), .a2(a), .z(s));
endmodule // vi_lerp_csa_haso