Skip to content
  • This project
    • Loading...
  • Sign in

Barry / rf-depot

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • rf-depot
  • ..
  • src
  • adder27b.v
  • root's avatar
    added the rest · 5fa3b884
    5fa3b884
    root committed 2020-05-02 06:11:47 +0000
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