1 |
2 |
heshamelma |
//////////////////////////////////////////////////////////////////
|
2 |
|
|
// //
|
3 |
|
|
// Write back result select mux //
|
4 |
|
|
// //
|
5 |
|
|
// This file is part of the Edge project //
|
6 |
|
|
// http://www.opencores.org/project,edge //
|
7 |
|
|
// //
|
8 |
|
|
// Description //
|
9 |
|
|
// Multiplixer to choose from different result size //
|
10 |
|
|
// //
|
11 |
|
|
// Author(s): //
|
12 |
|
|
// - Hesham AL-Matary, heshamelmatary@gmail.com //
|
13 |
|
|
// //
|
14 |
|
|
//////////////////////////////////////////////////////////////////
|
15 |
|
|
// //
|
16 |
|
|
// Copyright (C) 2014 Authors and OPENCORES.ORG //
|
17 |
|
|
// //
|
18 |
|
|
// This source file may be used and distributed without //
|
19 |
|
|
// restriction provided that this copyright statement is not //
|
20 |
|
|
// removed from the file and that any derivative work contains //
|
21 |
|
|
// the original copyright notice and the associated disclaimer. //
|
22 |
|
|
// //
|
23 |
|
|
// This source file is free software; you can redistribute it //
|
24 |
|
|
// and/or modify it under the terms of the GNU Lesser General //
|
25 |
|
|
// Public License as published by the Free Software Foundation; //
|
26 |
|
|
// either version 2.1 of the License, or (at your option) any //
|
27 |
|
|
// later version. //
|
28 |
|
|
// //
|
29 |
|
|
// This source is distributed in the hope that it will be //
|
30 |
|
|
// useful, but WITHOUT ANY WARRANTY; without even the implied //
|
31 |
|
|
// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR //
|
32 |
|
|
// PURPOSE. See the GNU Lesser General Public License for more //
|
33 |
|
|
// details. //
|
34 |
|
|
// //
|
35 |
|
|
// You should have received a copy of the GNU Lesser General //
|
36 |
|
|
// Public License along with this source; if not, download it //
|
37 |
|
|
// from http://www.opencores.org/lgpl.shtml //
|
38 |
|
|
// //
|
39 |
|
|
//////////////////////////////////////////////////////////////////
|
40 |
|
|
|
41 |
|
|
`define loadWord 3'b000 /* LW (normal load word) */
|
42 |
|
|
`define loadSByte 3'b001 /* LB (load signed byte) */
|
43 |
|
|
`define loadSHWord 3'b010 /* LH (load signed half word) */
|
44 |
|
|
`define loadUByte 3'b011 /* LBU (load unsigned byte) */
|
45 |
|
|
`define loadUHWord 3'b100 /* LHU (load unsgined half word) */
|
46 |
|
|
|
47 |
|
|
module mux_WBResult
|
48 |
|
|
#
|
49 |
|
|
(
|
50 |
|
|
parameter N=32
|
51 |
|
|
)
|
52 |
|
|
(
|
53 |
|
|
input[N-1:0] Word,
|
54 |
|
|
input[N-1:0] SByte,
|
55 |
|
|
input[N-1:0] SHWord,
|
56 |
|
|
input[N-1:0] UByte,
|
57 |
|
|
input[N-1:0] UHWord,
|
58 |
|
|
input[2:0] s,
|
59 |
|
|
output reg[N-1:0] WBResult
|
60 |
|
|
);
|
61 |
|
|
|
62 |
|
|
always @(*)
|
63 |
|
|
case (s)
|
64 |
|
|
`loadWord: WBResult = Word;
|
65 |
|
|
`loadSByte: WBResult = SByte;
|
66 |
|
|
`loadSHWord: WBResult = SHWord;
|
67 |
|
|
`loadUByte: WBResult = UByte;
|
68 |
|
|
`loadUHWord: WBResult = UHWord;
|
69 |
|
|
default: WBResult = Word;
|
70 |
|
|
endcase
|
71 |
|
|
endmodule
|