[6] | 1 | // ========== Copyright Header Begin ========================================== |
---|
| 2 | // |
---|
| 3 | // OpenSPARC T1 Processor File: spu_lsurpt.v |
---|
| 4 | // Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved. |
---|
| 5 | // DO NOT ALTER OR REMOVE COPYRIGHT NOTICES. |
---|
| 6 | // |
---|
| 7 | // The above named program is free software; you can redistribute it and/or |
---|
| 8 | // modify it under the terms of the GNU General Public |
---|
| 9 | // License version 2 as published by the Free Software Foundation. |
---|
| 10 | // |
---|
| 11 | // The above named program is distributed in the hope that it will be |
---|
| 12 | // useful, but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 13 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 14 | // General Public License for more details. |
---|
| 15 | // |
---|
| 16 | // You should have received a copy of the GNU General Public |
---|
| 17 | // License along with this work; if not, write to the Free Software |
---|
| 18 | // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 19 | // |
---|
| 20 | // ========== Copyright Header End ============================================ |
---|
| 21 | |
---|
| 22 | |
---|
| 23 | module spu_lsurpt ( |
---|
| 24 | |
---|
| 25 | |
---|
| 26 | /*outputs*/ |
---|
| 27 | |
---|
| 28 | spu_lsurpt_ldxa_data_out, |
---|
| 29 | spu_lsurpt_ldst_pckt_out, |
---|
| 30 | spu_lsurpt_cpx_data_out, |
---|
| 31 | |
---|
| 32 | /*inputs*/ |
---|
| 33 | spu_lsurpt_ldxa_data_in, |
---|
| 34 | spu_lsurpt_ldst_pckt_in, |
---|
| 35 | spu_lsurpt_cpx_data_in); |
---|
| 36 | |
---|
| 37 | // --------------------------------------------------------------------- |
---|
| 38 | |
---|
| 39 | input [63:0] spu_lsurpt_ldxa_data_in; |
---|
| 40 | input [122:0] spu_lsurpt_ldst_pckt_in; |
---|
| 41 | input [134:0] spu_lsurpt_cpx_data_in; |
---|
| 42 | |
---|
| 43 | // --------------------------------------------------------------------- |
---|
| 44 | |
---|
| 45 | output [63:0] spu_lsurpt_ldxa_data_out; |
---|
| 46 | output [122:0] spu_lsurpt_ldst_pckt_out; |
---|
| 47 | output [134:0] spu_lsurpt_cpx_data_out; |
---|
| 48 | |
---|
| 49 | // --------------------------------------------------------------------- |
---|
| 50 | // --------------------------------------------------------------------- |
---|
| 51 | // --------------------------------------------------------------------- |
---|
| 52 | |
---|
| 53 | // port postion should be: input on the TOP and output on BOTTOM. |
---|
| 54 | |
---|
| 55 | assign spu_lsurpt_ldxa_data_out[63:0] = spu_lsurpt_ldxa_data_in[63:0]; |
---|
| 56 | |
---|
| 57 | // --------------------------------------------------------------------- |
---|
| 58 | |
---|
| 59 | // port postion should be: input on the TOP and output on BOTTOM. |
---|
| 60 | |
---|
| 61 | assign spu_lsurpt_ldst_pckt_out[122:0] = spu_lsurpt_ldst_pckt_in[122:0]; |
---|
| 62 | |
---|
| 63 | // --------------------------------------------------------------------- |
---|
| 64 | |
---|
| 65 | // port postion should be: input on the BOTTOM and output on TOP. |
---|
| 66 | |
---|
| 67 | assign spu_lsurpt_cpx_data_out[134:0] = spu_lsurpt_cpx_data_in[134:0]; |
---|
| 68 | |
---|
| 69 | |
---|
| 70 | endmodule |
---|