adder27b.v 313 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 2002/03/28 00:26:13 berndt 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