OpenCores
URL https://opencores.org/ocsvn/s1_core/s1_core/trunk

Subversion Repositories s1_core

[/] [s1_core/] [trunk/] [hdl/] [rtl/] [sparc_core/] [sparc_ffu_part_add32.v] - Diff between revs 95 and 105

Only display areas with differences | Details | Blame | View Log

Rev 95 Rev 105
// ========== Copyright Header Begin ==========================================
// ========== Copyright Header Begin ==========================================
// 
// 
// OpenSPARC T1 Processor File: sparc_ffu_part_add32.v
// OpenSPARC T1 Processor File: sparc_ffu_part_add32.v
// Copyright (c) 2006 Sun Microsystems, Inc.  All Rights Reserved.
// Copyright (c) 2006 Sun Microsystems, Inc.  All Rights Reserved.
// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES.
// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES.
// 
// 
// The above named program is free software; you can redistribute it and/or
// The above named program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public
// modify it under the terms of the GNU General Public
// License version 2 as published by the Free Software Foundation.
// License version 2 as published by the Free Software Foundation.
// 
// 
// The above named program is distributed in the hope that it will be 
// The above named program is distributed in the hope that it will be 
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// General Public License for more details.
// General Public License for more details.
// 
// 
// You should have received a copy of the GNU General Public
// You should have received a copy of the GNU General Public
// License along with this work; if not, write to the Free Software
// License along with this work; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
// 
// 
// ========== Copyright Header End ============================================
// ========== Copyright Header End ============================================
///////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////
/*
/*
//  Module Name: sparc_ffu_part_add32
//  Module Name: sparc_ffu_part_add32
//      Description: This is the ffu VIS adder.  It can do either
//      Description: This is the ffu VIS adder.  It can do either
//                              2 16 bit adds or 1 32 bit add.
//                              2 16 bit adds or 1 32 bit add.
*/
*/
module sparc_ffu_part_add32 (/*AUTOARG*/
module sparc_ffu_part_add32 (/*AUTOARG*/
   // Outputs
   // Outputs
   z,
   z,
   // Inputs
   // Inputs
   a, b, cin, add32
   a, b, cin, add32
   ) ;
   ) ;
   input [31:0] a;
   input [31:0] a;
   input [31:0] b;
   input [31:0] b;
   input        cin;
   input        cin;
   input        add32;
   input        add32;
 
 
   output [31:0] z;
   output [31:0] z;
 
 
   wire          cout15; // carry out from lower 16 bit add
   wire          cout15; // carry out from lower 16 bit add
   wire          cin16; // carry in to the upper 16 bit add
   wire          cin16; // carry in to the upper 16 bit add
 
 
   assign        cin16 = (add32)? cout15: cin;
   assign        cin16 = (add32)? cout15: cin;
 
 
   assign      {cout15, z[15:0]} = a[15:0]+b[15:0]+{15'b0,cin};
   assign      {cout15, z[15:0]} = a[15:0]+b[15:0]+{15'b0,cin};
   assign      z[31:16] = a[31:16]+b[31:16]+{15'b0,cin16};
   assign      z[31:16] = a[31:16]+b[31:16]+{15'b0,cin16};
 
 
endmodule // sparc_ffu_part_add32
endmodule // sparc_ffu_part_add32
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.