URL
https://opencores.org/ocsvn/rtf8088/rtf8088/trunk
[/] [rtf8088/] [trunk/] [rtl/] [verilog/] [WRITE_BACK.v] - Blame information for rev 7
Go to most recent revision |
Details |
Compare with Previous |
View Log
Line No. |
Rev |
Author |
Line |
1 |
2 |
robfinch |
//=============================================================================
|
2 |
|
|
// 2009,2010,2012 Robert Finch
|
3 |
|
|
// Stratford
|
4 |
|
|
// robfinch<remove>@opencores.org
|
5 |
|
|
//
|
6 |
|
|
// WRITE_BACK state
|
7 |
|
|
// - update the register file
|
8 |
|
|
//
|
9 |
|
|
//
|
10 |
|
|
// This source file is free software: you can redistribute it and/or modify
|
11 |
|
|
// it under the terms of the GNU Lesser General Public License as published
|
12 |
|
|
// by the Free Software Foundation, either version 3 of the License, or
|
13 |
|
|
// (at your option) any later version.
|
14 |
|
|
//
|
15 |
|
|
// This source file 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
22 |
|
|
//
|
23 |
|
|
//=============================================================================
|
24 |
|
|
//
|
25 |
|
|
if (wrregs)
|
26 |
|
|
case({w,rrr})
|
27 |
|
|
4'b0000: ax[7:0] <= res[7:0];
|
28 |
|
|
4'b0001: cx[7:0] <= res[7:0];
|
29 |
|
|
4'b0010: dx[7:0] <= res[7:0];
|
30 |
|
|
4'b0011: bx[7:0] <= res[7:0];
|
31 |
|
|
4'b0100: ax[15:8] <= res[7:0];
|
32 |
|
|
4'b0101: cx[15:8] <= res[7:0];
|
33 |
|
|
4'b0110: dx[15:8] <= res[7:0];
|
34 |
|
|
4'b0111: bx[15:8] <= res[7:0];
|
35 |
|
|
4'b1000: ax <= res;
|
36 |
|
|
4'b1001: cx <= res;
|
37 |
|
|
4'b1010: dx <= res;
|
38 |
|
|
4'b1011: bx <= res;
|
39 |
|
|
4'b1100: sp <= res;
|
40 |
|
|
4'b1101: bp <= res;
|
41 |
|
|
4'b1110: si <= res;
|
42 |
|
|
4'b1111: di <= res;
|
43 |
|
|
endcase
|
44 |
|
|
|
45 |
|
|
// Write to segment register
|
46 |
|
|
//
|
47 |
|
|
if (wrsregs)
|
48 |
|
|
case(rrr)
|
49 |
|
|
3'd0: es <= res;
|
50 |
|
|
3'd1: cs <= res;
|
51 |
|
|
3'd2: ss <= res;
|
52 |
|
|
3'd3: ds <= res;
|
53 |
|
|
default: ;
|
54 |
|
|
endcase
|
© copyright 1999-2024
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.