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

Subversion Repositories test_project

[/] [test_project/] [trunk/] [rtl/] [verilog/] [components/] [or1200r2/] [or1200_sprs.v] - Blame information for rev 41

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

Line No. Rev Author Line
1 18 unneback
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
////  OR1200's interface to SPRs                                  ////
4
////                                                              ////
5
////  This file is part of the OpenRISC 1200 project              ////
6
////  http://www.opencores.org/cores/or1k/                        ////
7
////                                                              ////
8
////  Description                                                 ////
9
////  Decoding of SPR addresses and access to SPRs                ////
10
////                                                              ////
11
////  To Do:                                                      ////
12
////   - make it smaller and faster                               ////
13
////                                                              ////
14
////  Author(s):                                                  ////
15
////      - Damjan Lampret, lampret@opencores.org                 ////
16
////                                                              ////
17
//////////////////////////////////////////////////////////////////////
18
////                                                              ////
19
//// Copyright (C) 2000 Authors and OPENCORES.ORG                 ////
20
////                                                              ////
21
//// This source file may be used and distributed without         ////
22
//// restriction provided that this copyright statement is not    ////
23
//// removed from the file and that any derivative work contains  ////
24
//// the original copyright notice and the associated disclaimer. ////
25
////                                                              ////
26
//// This source file is free software; you can redistribute it   ////
27
//// and/or modify it under the terms of the GNU Lesser General   ////
28
//// Public License as published by the Free Software Foundation; ////
29
//// either version 2.1 of the License, or (at your option) any   ////
30
//// later version.                                               ////
31
////                                                              ////
32
//// This source is distributed in the hope that it will be       ////
33
//// useful, but WITHOUT ANY WARRANTY; without even the implied   ////
34
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      ////
35
//// PURPOSE.  See the GNU Lesser General Public License for more ////
36
//// details.                                                     ////
37
////                                                              ////
38
//// You should have received a copy of the GNU Lesser General    ////
39
//// Public License along with this source; if not, download it   ////
40
//// from http://www.opencores.org/lgpl.shtml                     ////
41
////                                                              ////
42
//////////////////////////////////////////////////////////////////////
43
//
44
// CVS Revision History
45
//
46
// $Log: or1200_sprs.v,v $
47
// Revision 1.11  2004/04/05 08:29:57  lampret
48
// Merged branch_qmem into main tree.
49
//
50
// Revision 1.9.4.1  2003/12/17 13:43:38  simons
51
// Exception prefix configuration changed.
52
//
53
// Revision 1.9  2002/09/07 05:42:02  lampret
54
// Added optional SR[CY]. Added define to enable additional (compare) flag modifiers. Defines are OR1200_IMPL_ADDC and OR1200_ADDITIONAL_FLAG_MODIFIERS.
55
//
56
// Revision 1.8  2002/08/28 01:44:25  lampret
57
// Removed some commented RTL. Fixed SR/ESR flag bug.
58
//
59
// Revision 1.7  2002/03/29 15:16:56  lampret
60
// Some of the warnings fixed.
61
//
62
// Revision 1.6  2002/03/11 01:26:57  lampret
63
// Changed generation of SPR address. Now it is ORed from base and offset instead of a sum.
64
//
65
// Revision 1.5  2002/02/01 19:56:54  lampret
66
// Fixed combinational loops.
67
//
68
// Revision 1.4  2002/01/23 07:52:36  lampret
69
// Changed default reset values for SR and ESR to match or1ksim's. Fixed flop model in or1200_dpram_32x32 when OR1200_XILINX_RAM32X1D is defined.
70
//
71
// Revision 1.3  2002/01/19 09:27:49  lampret
72
// SR[TEE] should be zero after reset.
73
//
74
// Revision 1.2  2002/01/18 07:56:00  lampret
75
// No more low/high priority interrupts (PICPR removed). Added tick timer exception. Added exception prefix (SR[EPH]). Fixed single-step bug whenreading NPC.
76
//
77
// Revision 1.1  2002/01/03 08:16:15  lampret
78
// New prefixes for RTL files, prefixed module names. Updated cache controllers and MMUs.
79
//
80
// Revision 1.12  2001/11/23 21:42:31  simons
81
// Program counter divided to PPC and NPC.
82
//
83
// Revision 1.11  2001/11/23 08:38:51  lampret
84
// Changed DSR/DRR behavior and exception detection.
85
//
86
// Revision 1.10  2001/11/12 01:45:41  lampret
87
// Moved flag bit into SR. Changed RF enable from constant enable to dynamic enable for read ports.
88
//
89
// Revision 1.9  2001/10/21 17:57:16  lampret
90
// Removed params from generic_XX.v. Added translate_off/on in sprs.v and id.v. Removed spr_addr from dc.v and ic.v. Fixed CR+LF.
91
//
92
// Revision 1.8  2001/10/14 13:12:10  lampret
93
// MP3 version.
94
//
95
// Revision 1.1.1.1  2001/10/06 10:18:36  igorm
96
// no message
97
//
98
// Revision 1.3  2001/08/13 03:36:20  lampret
99
// Added cfg regs. Moved all defines into one defines.v file. More cleanup.
100
//
101
// Revision 1.2  2001/08/09 13:39:33  lampret
102
// Major clean-up.
103
//
104
// Revision 1.1  2001/07/20 00:46:21  lampret
105
// Development version of RTL. Libraries are missing.
106
//
107
//
108
 
109
// synopsys translate_off
110
`include "timescale.v"
111
// synopsys translate_on
112
`include "or1200_defines.v"
113
 
114
module or1200_sprs(
115
                // Clk & Rst
116
                clk, rst,
117
 
118
                // Internal CPU interface
119
                flagforw, flag_we, flag, cyforw, cy_we, carry,
120
                addrbase, addrofs, dat_i, alu_op, branch_op,
121
                epcr, eear, esr, except_started,
122
                to_wbmux, epcr_we, eear_we, esr_we, pc_we, sr_we, to_sr, sr,
123
                spr_dat_cfgr, spr_dat_rf, spr_dat_npc, spr_dat_ppc, spr_dat_mac,
124
        boot_adr_sel_i,
125
 
126
                // From/to other RISC units
127
                spr_dat_pic, spr_dat_tt, spr_dat_pm,
128
                spr_dat_dmmu, spr_dat_immu, spr_dat_du,
129
                spr_addr, spr_dat_o, spr_cs, spr_we,
130
 
131
                du_addr, du_dat_du, du_read,
132
                du_write, du_dat_cpu
133
 
134
);
135
 
136
parameter width = `OR1200_OPERAND_WIDTH;
137
 
138
//
139
// I/O Ports
140
//
141
 
142
//
143
// Internal CPU interface
144
//
145
input                           clk;            // Clock
146
input                           rst;            // Reset
147
input                           flagforw;       // From ALU
148
input                           flag_we;        // From ALU
149
output                          flag;           // SR[F]
150
input                           cyforw;         // From ALU
151
input                           cy_we;          // From ALU
152
output                          carry;          // SR[CY]
153
input   [width-1:0]              addrbase;       // SPR base address
154
input   [15:0]                   addrofs;        // SPR offset
155
input   [width-1:0]              dat_i;          // SPR write data
156
input   [`OR1200_ALUOP_WIDTH-1:0]        alu_op;         // ALU operation
157
input   [`OR1200_BRANCHOP_WIDTH-1:0]     branch_op;      // Branch operation
158
input   [width-1:0]              epcr;           // EPCR0
159
input   [width-1:0]              eear;           // EEAR0
160
input   [`OR1200_SR_WIDTH-1:0]   esr;            // ESR0
161
input                           except_started; // Exception was started
162
output  [width-1:0]              to_wbmux;       // For l.mfspr
163
output                          epcr_we;        // EPCR0 write enable
164
output                          eear_we;        // EEAR0 write enable
165
output                          esr_we;         // ESR0 write enable
166
output                          pc_we;          // PC write enable
167
output                          sr_we;          // Write enable SR
168
output  [`OR1200_SR_WIDTH-1:0]   to_sr;          // Data to SR
169
output  [`OR1200_SR_WIDTH-1:0]   sr;             // SR
170
input   [31:0]                   spr_dat_cfgr;   // Data from CFGR
171
input   [31:0]                   spr_dat_rf;     // Data from RF
172
input   [31:0]                   spr_dat_npc;    // Data from NPC
173
input   [31:0]                   spr_dat_ppc;    // Data from PPC   
174
input   [31:0]                   spr_dat_mac;    // Data from MAC
175
input                                   boot_adr_sel_i;
176
 
177
//
178
// To/from other RISC units
179
//
180
input   [31:0]                   spr_dat_pic;    // Data from PIC
181
input   [31:0]                   spr_dat_tt;     // Data from TT
182
input   [31:0]                   spr_dat_pm;     // Data from PM
183
input   [31:0]                   spr_dat_dmmu;   // Data from DMMU
184
input   [31:0]                   spr_dat_immu;   // Data from IMMU
185
input   [31:0]                   spr_dat_du;     // Data from DU
186
output  [31:0]                   spr_addr;       // SPR Address
187
output  [31:0]                   spr_dat_o;      // Data to unit
188
output  [31:0]                   spr_cs;         // Unit select
189
output                          spr_we;         // SPR write enable
190
 
191
//
192
// To/from Debug Unit
193
//
194
input   [width-1:0]              du_addr;        // Address
195
input   [width-1:0]              du_dat_du;      // Data from DU to SPRS
196
input                           du_read;        // Read qualifier
197
input                           du_write;       // Write qualifier
198
output  [width-1:0]              du_dat_cpu;     // Data from SPRS to DU
199
 
200
//
201
// Internal regs & wires
202
//
203
reg     [`OR1200_SR_WIDTH-1:0]   sr_reg;                                 // SR
204
reg                                                     sr_reg_bit_eph;                 // SR_EPH bit
205
reg                                                     sr_reg_bit_eph_select;  // SR_EPH select
206
wire                                            sr_reg_bit_eph_muxed;   // SR_EPH muxed bit
207
reg     [`OR1200_SR_WIDTH-1:0]   sr;                                             // SR
208
reg                                     write_spr;      // Write SPR
209
reg                                     read_spr;       // Read SPR
210
reg     [width-1:0]              to_wbmux;       // For l.mfspr
211
wire                            cfgr_sel;       // Select for cfg regs
212
wire                            rf_sel;         // Select for RF
213
wire                            npc_sel;        // Select for NPC
214
wire                            ppc_sel;        // Select for PPC
215
wire                            sr_sel;         // Select for SR        
216
wire                            epcr_sel;       // Select for EPCR0
217
wire                            eear_sel;       // Select for EEAR0
218
wire                            esr_sel;        // Select for ESR0
219
wire    [31:0]                   sys_data;       // Read data from system SPRs
220
wire                            du_access;      // Debug unit access
221
wire    [`OR1200_ALUOP_WIDTH-1:0]        sprs_op;        // ALU operation
222
reg     [31:0]                   unqualified_cs; // Unqualified chip selects
223
 
224
//
225
// Decide if it is debug unit access
226
//
227
assign du_access = du_read | du_write;
228
 
229
//
230
// Generate sprs opcode
231
//
232
assign sprs_op = du_write ? `OR1200_ALUOP_MTSR : du_read ? `OR1200_ALUOP_MFSR : alu_op;
233
 
234
//
235
// Generate SPR address from base address and offset
236
// OR from debug unit address
237
//
238
assign spr_addr = du_access ? du_addr : addrbase | {16'h0000, addrofs};
239
 
240
//
241
// SPR is written by debug unit or by l.mtspr
242
//
243
assign spr_dat_o = du_write ? du_dat_du : dat_i;
244
 
245
//
246
// debug unit data input:
247
//  - write into debug unit SPRs by debug unit itself
248
//  - read of SPRS by debug unit
249
//  - write into debug unit SPRs by l.mtspr
250
//
251
assign du_dat_cpu = du_write ? du_dat_du : du_read ? to_wbmux : dat_i;
252
 
253
//
254
// Write into SPRs when l.mtspr
255
//
256
assign spr_we = du_write | write_spr;
257
 
258
//
259
// Qualify chip selects
260
//
261
assign spr_cs = unqualified_cs & {32{read_spr | write_spr}};
262
 
263
//
264
// Decoding of groups
265
//
266
always @(spr_addr)
267
        case (spr_addr[`OR1200_SPR_GROUP_BITS]) // synopsys parallel_case
268
                `OR1200_SPR_GROUP_WIDTH'd00: unqualified_cs = 32'b00000000_00000000_00000000_00000001;
269
                `OR1200_SPR_GROUP_WIDTH'd01: unqualified_cs = 32'b00000000_00000000_00000000_00000010;
270
                `OR1200_SPR_GROUP_WIDTH'd02: unqualified_cs = 32'b00000000_00000000_00000000_00000100;
271
                `OR1200_SPR_GROUP_WIDTH'd03: unqualified_cs = 32'b00000000_00000000_00000000_00001000;
272
                `OR1200_SPR_GROUP_WIDTH'd04: unqualified_cs = 32'b00000000_00000000_00000000_00010000;
273
                `OR1200_SPR_GROUP_WIDTH'd05: unqualified_cs = 32'b00000000_00000000_00000000_00100000;
274
                `OR1200_SPR_GROUP_WIDTH'd06: unqualified_cs = 32'b00000000_00000000_00000000_01000000;
275
                `OR1200_SPR_GROUP_WIDTH'd07: unqualified_cs = 32'b00000000_00000000_00000000_10000000;
276
                `OR1200_SPR_GROUP_WIDTH'd08: unqualified_cs = 32'b00000000_00000000_00000001_00000000;
277
                `OR1200_SPR_GROUP_WIDTH'd09: unqualified_cs = 32'b00000000_00000000_00000010_00000000;
278
                `OR1200_SPR_GROUP_WIDTH'd10: unqualified_cs = 32'b00000000_00000000_00000100_00000000;
279
                `OR1200_SPR_GROUP_WIDTH'd11: unqualified_cs = 32'b00000000_00000000_00001000_00000000;
280
                `OR1200_SPR_GROUP_WIDTH'd12: unqualified_cs = 32'b00000000_00000000_00010000_00000000;
281
                `OR1200_SPR_GROUP_WIDTH'd13: unqualified_cs = 32'b00000000_00000000_00100000_00000000;
282
                `OR1200_SPR_GROUP_WIDTH'd14: unqualified_cs = 32'b00000000_00000000_01000000_00000000;
283
                `OR1200_SPR_GROUP_WIDTH'd15: unqualified_cs = 32'b00000000_00000000_10000000_00000000;
284
                `OR1200_SPR_GROUP_WIDTH'd16: unqualified_cs = 32'b00000000_00000001_00000000_00000000;
285
                `OR1200_SPR_GROUP_WIDTH'd17: unqualified_cs = 32'b00000000_00000010_00000000_00000000;
286
                `OR1200_SPR_GROUP_WIDTH'd18: unqualified_cs = 32'b00000000_00000100_00000000_00000000;
287
                `OR1200_SPR_GROUP_WIDTH'd19: unqualified_cs = 32'b00000000_00001000_00000000_00000000;
288
                `OR1200_SPR_GROUP_WIDTH'd20: unqualified_cs = 32'b00000000_00010000_00000000_00000000;
289
                `OR1200_SPR_GROUP_WIDTH'd21: unqualified_cs = 32'b00000000_00100000_00000000_00000000;
290
                `OR1200_SPR_GROUP_WIDTH'd22: unqualified_cs = 32'b00000000_01000000_00000000_00000000;
291
                `OR1200_SPR_GROUP_WIDTH'd23: unqualified_cs = 32'b00000000_10000000_00000000_00000000;
292
                `OR1200_SPR_GROUP_WIDTH'd24: unqualified_cs = 32'b00000001_00000000_00000000_00000000;
293
                `OR1200_SPR_GROUP_WIDTH'd25: unqualified_cs = 32'b00000010_00000000_00000000_00000000;
294
                `OR1200_SPR_GROUP_WIDTH'd26: unqualified_cs = 32'b00000100_00000000_00000000_00000000;
295
                `OR1200_SPR_GROUP_WIDTH'd27: unqualified_cs = 32'b00001000_00000000_00000000_00000000;
296
                `OR1200_SPR_GROUP_WIDTH'd28: unqualified_cs = 32'b00010000_00000000_00000000_00000000;
297
                `OR1200_SPR_GROUP_WIDTH'd29: unqualified_cs = 32'b00100000_00000000_00000000_00000000;
298
                `OR1200_SPR_GROUP_WIDTH'd30: unqualified_cs = 32'b01000000_00000000_00000000_00000000;
299
                `OR1200_SPR_GROUP_WIDTH'd31: unqualified_cs = 32'b10000000_00000000_00000000_00000000;
300
        endcase
301
 
302
//
303
// SPRs System Group
304
//
305
 
306
//
307
// What to write into SR
308
//
309
assign to_sr[`OR1200_SR_FO:`OR1200_SR_OV] =
310
                (except_started) ? sr[`OR1200_SR_FO:`OR1200_SR_OV] :
311
                (branch_op == `OR1200_BRANCHOP_RFE) ? esr[`OR1200_SR_FO:`OR1200_SR_OV] :
312
                (write_spr && sr_sel) ? {1'b1, spr_dat_o[`OR1200_SR_FO-1:`OR1200_SR_OV]}:
313
                sr[`OR1200_SR_FO:`OR1200_SR_OV];
314
assign to_sr[`OR1200_SR_CY] =
315
                (except_started) ? sr[`OR1200_SR_CY] :
316
                (branch_op == `OR1200_BRANCHOP_RFE) ? esr[`OR1200_SR_CY] :
317
                cy_we ? cyforw :
318
                (write_spr && sr_sel) ? spr_dat_o[`OR1200_SR_CY] :
319
                sr[`OR1200_SR_CY];
320
assign to_sr[`OR1200_SR_F] =
321
                (except_started) ? sr[`OR1200_SR_F] :
322
                (branch_op == `OR1200_BRANCHOP_RFE) ? esr[`OR1200_SR_F] :
323
                flag_we ? flagforw :
324
                (write_spr && sr_sel) ? spr_dat_o[`OR1200_SR_F] :
325
                sr[`OR1200_SR_F];
326
assign to_sr[`OR1200_SR_CE:`OR1200_SR_SM] =
327
                (except_started) ? {sr[`OR1200_SR_CE:`OR1200_SR_LEE], 2'b00, sr[`OR1200_SR_ICE:`OR1200_SR_DCE], 3'b001} :
328
                (branch_op == `OR1200_BRANCHOP_RFE) ? esr[`OR1200_SR_CE:`OR1200_SR_SM] :
329
                (write_spr && sr_sel) ? spr_dat_o[`OR1200_SR_CE:`OR1200_SR_SM]:
330
                sr[`OR1200_SR_CE:`OR1200_SR_SM];
331
 
332
//
333
// Selects for system SPRs
334
//
335
assign cfgr_sel = (spr_cs[`OR1200_SPR_GROUP_SYS] && (spr_addr[10:4] == `OR1200_SPR_CFGR));
336
assign rf_sel = (spr_cs[`OR1200_SPR_GROUP_SYS] && (spr_addr[10:5] == `OR1200_SPR_RF));
337
assign npc_sel = (spr_cs[`OR1200_SPR_GROUP_SYS] && (spr_addr[10:0] == `OR1200_SPR_NPC));
338
assign ppc_sel = (spr_cs[`OR1200_SPR_GROUP_SYS] && (spr_addr[10:0] == `OR1200_SPR_PPC));
339
assign sr_sel = (spr_cs[`OR1200_SPR_GROUP_SYS] && (spr_addr[10:0] == `OR1200_SPR_SR));
340
assign epcr_sel = (spr_cs[`OR1200_SPR_GROUP_SYS] && (spr_addr[10:0] == `OR1200_SPR_EPCR));
341
assign eear_sel = (spr_cs[`OR1200_SPR_GROUP_SYS] && (spr_addr[10:0] == `OR1200_SPR_EEAR));
342
assign esr_sel = (spr_cs[`OR1200_SPR_GROUP_SYS] && (spr_addr[10:0] == `OR1200_SPR_ESR));
343
 
344
//
345
// Write enables for system SPRs
346
//
347
assign sr_we = (write_spr && sr_sel) | (branch_op == `OR1200_BRANCHOP_RFE) | flag_we | cy_we;
348
assign pc_we = (write_spr && (npc_sel | ppc_sel));
349
assign epcr_we = (write_spr && epcr_sel);
350
assign eear_we = (write_spr && eear_sel);
351
assign esr_we = (write_spr && esr_sel);
352
 
353
//
354
// Output from system SPRs
355
//
356
assign sys_data = (spr_dat_cfgr & {32{read_spr & cfgr_sel}}) |
357
                  (spr_dat_rf & {32{read_spr & rf_sel}}) |
358
                  (spr_dat_npc & {32{read_spr & npc_sel}}) |
359
                  (spr_dat_ppc & {32{read_spr & ppc_sel}}) |
360
                  ({{32-`OR1200_SR_WIDTH{1'b0}},sr} & {32{read_spr & sr_sel}}) |
361
                  (epcr & {32{read_spr & epcr_sel}}) |
362
                  (eear & {32{read_spr & eear_sel}}) |
363
                  ({{32-`OR1200_SR_WIDTH{1'b0}},esr} & {32{read_spr & esr_sel}});
364
 
365
//
366
// Flag alias
367
//
368
assign flag = sr[`OR1200_SR_F];
369
 
370
//
371
// Carry alias
372
//
373
assign carry = sr[`OR1200_SR_CY];
374
 
375
//
376
// Supervision register
377
//
378
always @(posedge clk or posedge rst)
379
        if (rst)
380
                sr_reg <= #1 {1'b1, `OR1200_SR_EPH_DEF, {`OR1200_SR_WIDTH-3{1'b0}}, 1'b1};
381
        else if (except_started)
382
                sr_reg <= #1 to_sr[`OR1200_SR_WIDTH-1:0];
383
        else if (sr_we)
384
                sr_reg <= #1 to_sr[`OR1200_SR_WIDTH-1:0];
385
 
386
always @(posedge clk or posedge rst)
387
        if (rst) begin
388
                sr_reg_bit_eph <= #1 `OR1200_SR_EPH_DEF;
389
                sr_reg_bit_eph_select <= #1 1'b1;
390
        end
391
        else if (sr_reg_bit_eph_select) begin
392
                sr_reg_bit_eph <= #1 boot_adr_sel_i;
393
                sr_reg_bit_eph_select <= #1 1'b0;
394
        end
395
        else if (sr_we) begin
396
                sr_reg_bit_eph <= #1 to_sr[`OR1200_SR_EPH];
397
        end
398
 
399
assign  sr_reg_bit_eph_muxed = (sr_reg_bit_eph_select) ? boot_adr_sel_i : sr_reg_bit_eph;
400
 
401
always @(sr_reg or sr_reg_bit_eph_muxed)
402
        sr = {sr_reg[`OR1200_SR_WIDTH-1], sr_reg_bit_eph_muxed, sr_reg[`OR1200_SR_WIDTH-3:0]};
403
 
404
//
405
// MTSPR/MFSPR interface
406
//
407
always @(sprs_op or spr_addr or sys_data or spr_dat_mac or spr_dat_pic or spr_dat_pm or
408
        spr_dat_dmmu or spr_dat_immu or spr_dat_du or spr_dat_tt) begin
409
        case (sprs_op)  // synopsys parallel_case
410
                `OR1200_ALUOP_MTSR : begin
411
                        write_spr = 1'b1;
412
                        read_spr = 1'b0;
413
                        to_wbmux = 32'b0;
414
                end
415
                `OR1200_ALUOP_MFSR : begin
416
                        casex (spr_addr[`OR1200_SPR_GROUP_BITS]) // synopsys parallel_case
417
                                `OR1200_SPR_GROUP_TT:
418
                                        to_wbmux = spr_dat_tt;
419
                                `OR1200_SPR_GROUP_PIC:
420
                                        to_wbmux = spr_dat_pic;
421
                                `OR1200_SPR_GROUP_PM:
422
                                        to_wbmux = spr_dat_pm;
423
                                `OR1200_SPR_GROUP_DMMU:
424
                                        to_wbmux = spr_dat_dmmu;
425
                                `OR1200_SPR_GROUP_IMMU:
426
                                        to_wbmux = spr_dat_immu;
427
                                `OR1200_SPR_GROUP_MAC:
428
                                        to_wbmux = spr_dat_mac;
429
                                `OR1200_SPR_GROUP_DU:
430
                                        to_wbmux = spr_dat_du;
431
                                `OR1200_SPR_GROUP_SYS:
432
                                        to_wbmux = sys_data;
433
                                default:
434
                                        to_wbmux = 32'b0;
435
                        endcase
436
                        write_spr = 1'b0;
437
                        read_spr = 1'b1;
438
                end
439
                default : begin
440
                        write_spr = 1'b0;
441
                        read_spr = 1'b0;
442
                        to_wbmux = 32'b0;
443
                end
444
        endcase
445
end
446
 
447
endmodule

powered by: WebSVN 2.1.0

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