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

Subversion Repositories raytrac

[/] [raytrac/] [branches/] [fp/] [dpc.vhd] - Blame information for rev 134

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 123 jguarin200
--! @file dpc.vhd
2 122 jguarin200
--! @brief Decodificador de operacion. 
3 128 jguarin200
--! @author Julián Andrés Guarín Reyes
4 122 jguarin200
--------------------------------------------------------------
5
-- RAYTRAC
6
-- Author Julian Andres Guarin
7 123 jguarin200
-- dpc.vhd
8 122 jguarin200
-- This file is part of raytrac.
9
-- 
10
--     raytrac is free software: you can redistribute it and/or modify
11
--     it under the terms of the GNU General Public License as published by
12
--     the Free Software Foundation, either version 3 of the License, or
13
--     (at your option) any later version.
14
-- 
15
--     raytrac is distributed in the hope that it will be useful,
16
--     but WITHOUT ANY WARRANTY; without even the implied warranty of
17
--     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
--     GNU General Public License for more details.
19
-- 
20
--     You should have received a copy of the GNU General Public License
21
--     along with raytrac.  If not, see <http://www.gnu.org/licenses/>.
22
 
23
library ieee;
24
use ieee.std_logic_1164.all;
25 134 jguarin200
 
26 123 jguarin200
entity dpc is
27 122 jguarin200
        generic (
28 132 jguarin200
                width : integer := 32
29
                --!external_readable_widthad    : integer := integer(ceil(log(real(external_readable_blocks),2.0))))                    
30 122 jguarin200
        );
31
        port (
32 127 jguarin200
                paraminput                              : in    std_logic_vector ((12*width)-1 downto 0);        --! Vectores A,B,C,D
33
                prd32blko                               : in    std_logic_vector ((06*width)-1 downto 0);        --! Salidas de los 6 multiplicadores.
34
                add32blko                               : in    std_logic_vector ((04*width)-1 downto 0);        --! Salidas de los 4 sumadores.
35
                sqr32blko,inv32blko             : in    std_logic_vector (width-1 downto 0);             --! Salidas de las 2 raices cuadradas y los 2 inversores.
36
                fifo32x26_q                             : in    std_logic_vector (03*width-1 downto 0);          --! Salida de la cola intermedia.
37
                fifo32x09_q                             : in    std_logic_vector (02*width-1 downto 0);  --! Salida de las colas de producto punto. 
38
                unary,crossprod,addsub  : in    std_logic;                                                                      --! Bit con el identificador del bloque AB vs CD e identificador del sub bloque (A/B) o (C/D). 
39
                scalar                                  : in    std_logic;
40
                fifo32x26_d                             : out   std_logic_vector (03*width-1 downto 0);          --! Entrada a la cola intermedia para la normalizaci&oacute;n.
41
                fifo32x09_d                             : out   std_logic_vector (02*width-1 downto 0);          --! Entrada a las colas intermedias del producto punto.         
42
                prd32blki                               : out   std_logic_vector ((12*width)-1 downto 0);        --! Entrada de los 12 factores en el bloque de multiplicaci&oacute;n respectivamente.
43
                add32blki                               : out   std_logic_vector ((08*width)-1 downto 0);        --! Entrada de los 8 sumandos del bloque de 4 sumadores.  
44
 
45
                resultoutput                    : out   std_logic_vector ((08*width)-1 downto 0)         --! 6 salidas de resultados, pues lo m&aacute;ximo que podr&aacute; calcularse por cada clock son 2 vectores. 
46 122 jguarin200
        );
47 123 jguarin200
end dpc;
48 122 jguarin200
 
49 123 jguarin200
architecture dpc_arch of dpc is
50 125 jguarin200
 
51
        constant qz : integer := 00;constant qy : integer := 01;constant qx : integer := 02;
52 123 jguarin200
        constant az : integer := 00;constant ay : integer := 01;constant ax : integer := 02;constant bz : integer := 03;constant by : integer := 04;constant bx : integer := 05;
53
        constant cz : integer := 06;constant cy : integer := 07;constant cx : integer := 08;constant dz : integer := 09;constant dy : integer := 10;constant dx : integer := 11;
54
        constant f0     : integer := 00;constant f1 : integer := 01;constant f2 : integer := 02;constant f3 : integer := 03;constant f4 : integer := 04;constant f5 : integer := 05;
55
        constant f6     : integer := 06;constant f7 : integer := 07;constant f8 : integer := 08;constant f9 : integer := 09;constant f10: integer := 10;constant f11: integer := 11;
56
        constant s0     : integer := 00;constant s1 : integer := 01;constant s2 : integer := 02;constant s3 : integer := 03;constant s4 : integer := 04;constant s5 : integer := 05;
57 127 jguarin200
        constant s6     : integer := 06;constant s7 : integer := 07;
58
        constant a0     : integer := 00;constant a1 : integer := 01;constant a2 : integer := 02;constant aa : integer := 03;
59 123 jguarin200
        constant p0     : integer := 00;constant p1 : integer := 01;constant p2 : integer := 02;constant p3 : integer := 03;constant p4 : integer := 04;constant p5 : integer := 05;
60 127 jguarin200
 
61 124 jguarin200
        constant dpfifoab : integer := 00;
62
        constant dpfifocd : integer := 01;
63
 
64 122 jguarin200
 
65 123 jguarin200
        type    vectorblock12 is array (11 downto 0) of std_logic_vector(width-1 downto 0);
66 127 jguarin200
        type    vectorblock08 is array (07 downto 0) of std_logic_vector(width-1 downto 0);
67 123 jguarin200
        type    vectorblock06 is array (05 downto 0) of std_logic_vector(width-1 downto 0);
68 127 jguarin200
        type    vectorblock04 is array (03 downto 0) of std_logic_vector(width-1 downto 0);
69 124 jguarin200
        type    vectorblock03 is array (02 downto 0) of std_logic_vector(width-1 downto 0);
70 123 jguarin200
        type    vectorblock02 is array (01 downto 0) of std_logic_vector(width-1 downto 0);
71 122 jguarin200
 
72 127 jguarin200
 
73
        signal sparaminput,sfactor                      : vectorblock12;
74
        signal ssumando,sresult                         : vectorblock08;
75
        signal sprd32blk                                        : vectorblock06;
76
        signal sadd32blk                                        : vectorblock04;
77 125 jguarin200
        signal snormfifo_q,snormfifo_d          : vectorblock03;
78 127 jguarin200
        signal sdpfifo_q                                        : vectorblock02;
79
        signal ssqr32blk,sinv32blk                      : std_logic_vector(width-1 downto 0);
80 123 jguarin200
 
81
begin
82 122 jguarin200
 
83 127 jguarin200
 
84
 
85 123 jguarin200
        stuff12:
86
        for i in 11 downto 0 generate
87
                sparaminput(i) <= paraminput(i*width+width-1 downto i*width);
88
                prd32blki(i*width+width-1 downto i*width) <= sfactor(i);
89 127 jguarin200
        end generate stuff12;
90
 
91
        stuff08:
92
        for i in 07 downto 0 generate
93 123 jguarin200
                add32blki(i*width+width-1 downto i*width) <= ssumando(i);
94 127 jguarin200
                resultoutput(i*width+width-1 downto i*width) <= sresult(i);
95
        end generate stuff08;
96 123 jguarin200
        stuff06:
97
        for i in 05 downto 0 generate
98
                sprd32blk(i)  <= prd32blko(i*width+width-1 downto i*width);
99 127 jguarin200
        end generate stuff06;
100
        stuff04:
101
        for i in 03 downto 0 generate
102 123 jguarin200
                sadd32blk(i)  <= add32blko(i*width+width-1 downto i*width);
103 127 jguarin200
        end generate stuff04;
104 124 jguarin200
        stuff03:
105
        for i in 02 downto 0 generate
106
                snormfifo_q(i) <= fifo32x26_q(i*width+width-1 downto i*width);
107
                fifo32x26_d(i*width+width-1 downto i*width) <= snormfifo_d(i);
108
        end generate stuff03;
109
 
110 123 jguarin200
        stuff02:
111 127 jguarin200
        for i in 01 downto 0 generate
112
                sdpfifo_q(i)  <= fifo32x09_q(i*width+width-1 downto i*width);
113 123 jguarin200
        end generate stuff02;
114 124 jguarin200
        fifo32x09_d <= sprd32blk(p3)&sprd32blk(p2);
115 122 jguarin200
 
116 127 jguarin200
 
117
 
118
        sinv32blk <= inv32blko;
119
        ssqr32blk <= sqr32blko;
120
 
121
        --! Salidas de los distintos resultados;
122
        sresult(0) <= ssqr32blk;
123
        sresult(1) <= sadd32blk(a0);
124
        sresult(2) <= sadd32blk(a1);
125
        sresult(3) <= sadd32blk(a2);
126
        sresult(4) <= sadd32blk(aa);
127
        sresult(5) <= sprd32blk(p3);
128
        sresult(6) <= sprd32blk(p4);
129
        sresult(7) <= sprd32blk(p5);
130
 
131
        --! Cola de normalizacion
132
        snormfifo_d(qx) <= sparaminput(ax);
133
        snormfifo_d(qy) <= sparaminput(ay);
134
        snormfifo_d(qz) <= sparaminput(az);
135
 
136
        --! Signo de los 3 primeros sumadores
137
 
138
 
139
 
140
 
141 132 jguarin200
        mul:process(unary,addsub,crossprod,scalar,sparaminput,sinv32blk,sprd32blk,sadd32blk,sdpfifo_q,snormfifo_q)
142 123 jguarin200
        begin
143 124 jguarin200
 
144
 
145 127 jguarin200
                if unary='1' then
146
                        --! Magnitud y normalizacion
147
                        sfactor(f0) <= sparaminput(ax);
148
                        sfactor(f1) <= sparaminput(ax);
149
                        sfactor(f2) <= sparaminput(ay);
150
                        sfactor(f3) <= sparaminput(ay);
151
                        sfactor(f4) <= sparaminput(az);
152
                        sfactor(f5) <= sparaminput(az);
153
                        sfactor(f6) <= snormfifo_q(ax);
154
                        sfactor(f7) <= sinv32blk;
155
                        sfactor(f8) <= snormfifo_q(ay);
156
                        sfactor(f9) <= sinv32blk;
157
                        sfactor(f10) <= snormfifo_q(az);
158
                        sfactor(f11) <= sinv32blk;
159 129 jguarin200
                elsif crossprod='1' then
160 127 jguarin200
                        --! Solo productos punto
161
                        sfactor(f0) <= sparaminput(ay);
162
                        sfactor(f1) <= sparaminput(bz);
163
                        sfactor(f2) <= sparaminput(az);
164
                        sfactor(f3) <= sparaminput(by);
165
                        sfactor(f4) <= sparaminput(az);
166
                        sfactor(f5) <= sparaminput(bx);
167
                        sfactor(f6) <= sparaminput(ax);
168
                        sfactor(f7) <= sparaminput(bz);
169
                        sfactor(f8) <= sparaminput(ax);
170
                        sfactor(f9) <= sparaminput(by);
171
                        sfactor(f10) <= sparaminput(ay);
172
                        sfactor(f11) <= sparaminput(bx);
173 129 jguarin200
                elsif scalar='0' then --! Producto punto 
174 127 jguarin200
                        sfactor(f0) <=  sparaminput(ax) ;
175
                        sfactor(f1) <=  sparaminput(bx) ;
176
                        sfactor(f2) <=  sparaminput(ay) ;
177
                        sfactor(f3) <=  sparaminput(by) ;
178
                        sfactor(f4) <=  sparaminput(az) ;
179
                        sfactor(f5) <=  sparaminput(bz) ;
180
                        sfactor(f6) <=  sparaminput(cx) ;
181
                        sfactor(f7) <=  sparaminput(dx) ;
182
                        sfactor(f8) <=  sparaminput(cy) ;
183
                        sfactor(f9) <=  sparaminput(dy) ;
184
                        sfactor(f10) <= sparaminput(cz) ;
185
                        sfactor(f11) <= sparaminput(dz) ;
186
                else
187
                        sfactor(f0) <=  sparaminput(ax) ;
188
                        sfactor(f1) <=  sparaminput(bx) ;
189
                        sfactor(f2) <=  sparaminput(ay) ;
190
                        sfactor(f3) <=  sparaminput(by) ;
191
                        sfactor(f4) <=  sparaminput(az) ;
192
                        sfactor(f5) <=  sparaminput(bz) ;
193
                        sfactor(f6) <=  sparaminput(cx) ;
194
                        sfactor(f7) <=  sparaminput(dx) ;
195
                        sfactor(f8) <=  sparaminput(cy) ;
196
                        sfactor(f9) <=  sparaminput(dx) ;
197
                        sfactor(f10) <= sparaminput(cz) ;
198
                        sfactor(f11) <= sparaminput(dx) ;
199 126 jguarin200
 
200 125 jguarin200
                end if;
201 127 jguarin200
 
202
                ssumando(s6) <= sprd32blk(p3);
203
                ssumando(s7) <= sdpfifo_q(dpfifocd);
204
                if addsub='1' then
205
                        ssumando(s0) <= sparaminput(ax);
206
                        ssumando(s1) <= sparaminput(bx);
207
                        ssumando(s2) <= sparaminput(ay);
208
                        ssumando(s3) <= sparaminput(by);
209
                        ssumando(s4) <= sparaminput(az);
210
                        ssumando(s5) <= sparaminput(bz);
211
                else
212
                        ssumando(s0) <= sprd32blk(p0);
213
                        ssumando(s1) <= sprd32blk(p1);
214 132 jguarin200
                        if crossprod='0' then
215
                                ssumando(s2) <= sadd32blk(a0);
216
                                ssumando(s3) <= sdpfifo_q(dpfifoab);
217
                        else
218
                                ssumando(s2) <= sprd32blk(p2);
219
                                ssumando(s3) <= sprd32blk(p3);
220
                        end if;
221 127 jguarin200
                        ssumando(s4) <= sprd32blk(p4);
222
                        ssumando(s5) <= sprd32blk(p5);
223
                end if;
224 123 jguarin200
        end process;
225
 
226
 
227 127 jguarin200
 
228
 
229
--      interconnection:process(instr3,hblockslab,abblockslab,cdblockslab,sparaminput,sprd32blk,sadd32blk,sdpfifo_q)
230
--      begin
231
--              --! La cola para la normalizacion de los vectores.
232
--              snormfifo_d(qx) <= (hblockslab and ((cdblockslab and sparaminput(dx))or(not(cdblockslab) and sparaminput(cx)))) or (not(hblockslab) and ((abblockslab and sparaminput(bx))or(not(abblockslab) and sparaminput(ax))));
233
--              snormfifo_d(qy) <= (hblockslab and ((cdblockslab and sparaminput(dy))or(not(cdblockslab) and sparaminput(cy)))) or (not(hblockslab) and ((abblockslab and sparaminput(by))or(not(abblockslab) and sparaminput(ay))));
234
--              snormfifo_d(qz) <= (hblockslab and ((cdblockslab and sparaminput(dz))or(not(cdblockslab) and sparaminput(cz)))) or (not(hblockslab) and ((abblockslab and sparaminput(bz))or(not(abblockslab) and sparaminput(az))));
235
--      
236
--              --! Combinatorio para decidir que operaciones realizan los sumadores / restadores.
237
--              add32blks <= (instr3(0) xor (instr3(1) xor instr3(0)))&(instr3(0) xor (instr3(1) xor instr3(0))) ;
238
--              
239
--              --! Por defecto conectar los sumandos en producto punto/cruz
240
--              ssumando(s0) <= sprd32blk(p0);ssumando(s1) <= sprd32blk(p1);
241
--              ssumando(s6) <= sadd32blk(a0);ssumando(s7) <= sdpfifo_q(dpfifoab);
242
--              ssumando(s10) <= sdpfifo_q(dpfifocd);ssumando(s11) <= sadd32blk(a2);
243
--              ssumando(s4) <= sprd32blk(p4);ssumando(s5) <= sprd32blk(p5);
244
--              ssumando(s2) <= sprd32blk(p2);ssumando(s3) <= sprd32blk(p3);
245
--              
246
--              --! El segundo sumador del segundo bloque siempre sera suma o resta independiente de la operacion
247
--              ssumando(s8) <= sparaminput(cy);ssumando(s9) <= sparaminput(dy);        
248
--
249
--              --! Por defecto conectar los factores en producto punto
250
--              sfactor(f0) <= sparaminput(ax);sfactor(f1) <= sparaminput(bx);
251
--              sfactor(f2) <= sparaminput(ay);sfactor(f3) <= sparaminput(by);
252
--              sfactor(f4) <= sparaminput(az);sfactor(f5) <= sparaminput(bz);
253
--              sfactor(f6) <= sparaminput(bx);sfactor(f7) <= sparaminput(dx);
254
--              sfactor(f8) <= sparaminput(by);sfactor(f9) <= sparaminput(dy);
255
--              sfactor(f10) <= sparaminput(bz);sfactor(f11) <= sparaminput(dz);
256
--              
257
--              --!Los resultados por defecto se acomodan al producto punto y parcialmente a los productos simple y escalar.
258
--              sresult(ax) <= sadd32blk(aa);
259
--              sresult(ay) <= sprd32blk(p1);
260
--              sresult(az) <= sprd32blk(p2);
261
--              sresult(bx) <= sadd32blk(ac);
262
--              sresult(by) <= sprd32blk(p4);
263
--              sresult(bz) <= sprd32blk(p5);
264
--              
265
--              if (instr3(2 downto 1)="11" or instr3="100") then
266
--                      sresult(ax) <= sprd32blk(p0);
267
--                      sresult(bx) <= sprd32blk(p3);
268
--              elsif instr3(0)='1' then
269
--                      sresult(ax) <= sprd32blk(a0);
270
--                      sresult(ay) <= sprd32blk(a1);
271
--                      sresult(az) <= sprd32blk(a2);
272
--                      sresult(bx) <= sadd32blk(aa);
273
--                      sresult(by) <= sprd32blk(ab);
274
--                      sresult(bz) <= sadd32blk(ac);
275
--              elsif instr3(1)='1' then
276
--                      sresult(ax) <= ssqr32blk(sqrt320);
277
--                      sresult(bx) <= ssqr32blk(sqrt321);
278
--              end if;
279
--                      
280
--
281
--              if instr3(0)='1' then   --! Producto Cruz, suma, resta, multiplicacion simple
282
--
283
--                      if (instr3(2) or instr3(1))='1' then --! Suma, Resta, Multiplicacion simple
284
--                              
285
--                              --! Conectar las entradas de los sumadores en suma o resta de vectores 
286
--                              ssumando(s0) <= sparaminput(ax);ssumando(s1) <= sparaminput(bx);
287
--                              ssumando(s2) <= sparaminput(ay);ssumando(s3) <= sparaminput(by);
288
--                              ssumando(s4) <= sparaminput(az);ssumando(s5) <= sparaminput(bz);
289
--                              ssumando(s6) <= sparaminput(cx);ssumando(s7) <= sparaminput(dx);                                
290
--                              ssumando(s10) <= sparaminput(cz);ssumando(s11) <= sparaminput(dz);
291
--                      
292
--                      else --! Producto Cruz!
293
--                              
294
--                              if hblock='1' then      --! Producto crux CxD 
295
--                                      --!Multiplicadores: 
296
--                                      sfactor(f0) <= sparaminput(cy);sfactor(f1) <= sparaminput(dz);sfactor(f2) <= sparaminput(cz);sfactor(f3) <= sparaminput(dy);
297
--                                      sfactor(f4) <= sparaminput(cx);sfactor(f5) <= sparaminput(dz);sfactor(f6) <= sparaminput(cz);sfactor(f7) <= sparaminput(dx);
298
--                                      sfactor(f8) <= sparaminput(cx);sfactor(f9) <= sparaminput(dy);sfactor(f10) <= sparaminput(cy);sfactor(f11) <= sparaminput(dx);
299
--                              else                            --! Producto crux AxD
300
--                                      --!Multiplicadores:                                     
301
--                                      sfactor(f0) <= sparaminput(ay);sfactor(f1) <= sparaminput(bz);sfactor(f2) <= sparaminput(az);sfactor(f3) <= sparaminput(by);
302
--                                      sfactor(f4) <= sparaminput(ax);sfactor(f5) <= sparaminput(bz);sfactor(f6) <= sparaminput(az);sfactor(f7) <= sparaminput(bx);
303
--                                      sfactor(f8) <= sparaminput(ax);sfactor(f9) <= sparaminput(by);sfactor(f10) <= sparaminput(ay);sfactor(f11) <= sparaminput(bx);
304
--                              end if;
305
--
306
--                      end if;
307
--
308
--              else                                    --! Producto Punto, magnitud, producto escalar y normalizacion  
309
--                      if instr3(2)='1' then           --!Producto Escalar (INSTR3(1)=0) o Normalizacion (INSTR3(1)=1) 
310
--                              
311
--                              sfactor(f0) <= (not instr31slab and sparaminput(ax)) or (instr31slab and ((not(hblockslab) and ((not(abblockslab) and sparaminput(ax)) or(abblockslab and sparaminput(bx))))or( hblockslab and snormfifo_q(qx)) ) );
312
--                              sfactor(f1) <= (not instr31slab and sparaminput(bx)) or (instr31slab and ((not(hblockslab) and ((not(abblockslab) and sparaminput(ax)) or(abblockslab and sparaminput(bx))))or( hblockslab and sinv32blk(invr321)) ) );
313
--                              sfactor(f2) <= (not instr31slab and sparaminput(ay)) or (instr31slab and ((not(hblockslab) and ((not(abblockslab) and sparaminput(ay)) or(abblockslab and sparaminput(by))))or( hblockslab and snormfifo_q(qy)) ) );
314
--                              sfactor(f3) <= (not instr31slab and sparaminput(bx)) or (instr31slab and ((not(hblockslab) and ((not(abblockslab) and sparaminput(ay)) or(abblockslab and sparaminput(by))))or( hblockslab and sinv32blk(invr321)) ) );
315
--                              sfactor(f4) <= (not instr31slab and sparaminput(az)) or (instr31slab and ((not(hblockslab) and ((not(abblockslab) and sparaminput(az)) or(abblockslab and sparaminput(bz))))or( hblockslab and snormfifo_q(qz)) ) );
316
--                              sfactor(f5) <= (not instr31slab and sparaminput(bx)) or (instr31slab and ((not(hblockslab) and ((not(abblockslab) and sparaminput(az)) or(abblockslab and sparaminput(bz))))or( hblockslab and sinv32blk(invr321)) ) );
317
--                              sfactor(f6) <= (not instr31slab and sparaminput(cx)) or (instr31slab and ((hblockslab and ((not(cdblockslab) and sparaminput(cx)) or(cdblockslab and sparaminput(dx))))or( not(hblockslab) and snormfifo_q(qx)) ) );
318
--                              sfactor(f7) <= (not instr31slab and sparaminput(dx)) or (instr31slab and ((hblockslab and ((not(cdblockslab) and sparaminput(cx)) or(cdblockslab and sparaminput(dx))))or( not(hblockslab) and sinv32blk(invr320)) ) );
319
--                              sfactor(f8) <= (not instr31slab and sparaminput(cy)) or (instr31slab and ((hblockslab and ((not(cdblockslab) and sparaminput(cy)) or(cdblockslab and sparaminput(dy))))or( not(hblockslab) and snormfifo_q(qy)) ) );
320
--                              sfactor(f9) <= (not instr31slab and sparaminput(dx)) or (instr31slab and ((hblockslab and ((not(cdblockslab) and sparaminput(cy)) or(cdblockslab and sparaminput(dy))))or( not(hblockslab) and sinv32blk(invr320)) ) );
321
--                              sfactor(f10) <= (not instr31slab and sparaminput(cz)) or (instr31slab and ((hblockslab and ((not(cdblockslab) and sparaminput(cz)) or(cdblockslab and sparaminput(dz))))or( not(hblockslab) and snormfifo_q(qz)) ) );
322
--                              sfactor(f11) <= (not instr31slab and sparaminput(dx)) or (instr31slab and ((hblockslab and ((not(cdblockslab) and sparaminput(cz)) or(cdblockslab and sparaminput(dz))))or( not(hblockslab) and sinv32blk(invr320)) ) );
323
--                      elsif instr3(1)='1' then        --!Magnitud. El producto punto no se computa porque los factores estan por defecto configurados en producto punto.                              
324
--                              sfactor(f0) <= (not(abblockslab) and sparaminput(ax))or(abblockslab and sparaminput(bx));
325
--                              sfactor(f1) <= (not(abblockslab) and sparaminput(ax))or(abblockslab and sparaminput(bx));
326
--                              sfactor(f2) <= (not(abblockslab) and sparaminput(ay))or(abblockslab and sparaminput(by));
327
--                              sfactor(f3) <= (not(abblockslab) and sparaminput(ay))or(abblockslab and sparaminput(by));
328
--                              sfactor(f4) <= (not(abblockslab) and sparaminput(az))or(abblockslab and sparaminput(bz));
329
--                              sfactor(f5) <= (not(abblockslab) and sparaminput(az))or(abblockslab and sparaminput(bz));
330
--                              sfactor(f6) <= (not(cdblockslab) and sparaminput(cx))or(cdblockslab and sparaminput(dx));
331
--                              sfactor(f7) <= (not(cdblockslab) and sparaminput(cx))or(cdblockslab and sparaminput(dx));
332
--                              sfactor(f8) <= (not(cdblockslab) and sparaminput(cy))or(cdblockslab and sparaminput(dy));
333
--                              sfactor(f9) <= (not(cdblockslab) and sparaminput(cy))or(cdblockslab and sparaminput(dy));
334
--                              sfactor(f10) <= (not(cdblockslab) and sparaminput(cz))or(cdblockslab and sparaminput(dz));
335
--                              sfactor(f11) <= (not(cdblockslab) and sparaminput(cz))or(cdblockslab and sparaminput(dz));
336
--                                      
337
--                      end if;
338
--              end if;
339
--                              
340
--      end process;
341
--      
342
 
343 123 jguarin200
end dpc_arch;

powered by: WebSVN 2.1.0

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