adder27b.v 317 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 /* Project Reality MDP Created by Mike M. Cai 6/9/94 */ // $Id: adder27b.v,v 1.1.1.1 2002/05/17 06:07:48 blythe Exp $ module adder27b( sum, co, a, b, ci); input [26:0] a, b; input ci; output [26:0] sum; output co; assign {co,sum} = a + b + ci; endmodule // adder27b