vi_lerp_csa_ha2.v
709 Bytes
////////////////////////////////////////////////////////////////////////
//
// Project Reality
//
// module: vi_lerp_csa_ha2
// description: Half adder for csa tree for lerp for video interface.
// 2 bit.
//
// designer: Phil Gossett
// date: 10/9/94
//
////////////////////////////////////////////////////////////////////////
// $Id: vi_lerp_csa_ha2.v,v 1.1 2002/03/28 00:26:14 berndt Exp $
module vi_lerp_csa_ha2 (a, b, s, co);
input [1:0] a;
input [1:0] b;
output [1:0] s;
output [1:0] co;
xo02d1 s0 (.z( s[0]), .a1(a[0]), .a2(b[0]));
an02d1 c0 (.z(co[0]), .a1(a[0]), .a2(b[0]));
xo02d1 s1 (.z( s[1]), .a1(a[1]), .a2(b[1]));
an02d1 c1 (.z(co[1]), .a1(a[1]), .a2(b[1]));
endmodule // vi_lerp_csa_ha2