1 |
4 |
eyalhoc |
/////////////////////////////////////////////////////////////////////
|
2 |
|
|
//// ////
|
3 |
|
|
//// Author: Eyal Hochberg ////
|
4 |
|
|
//// eyal@provartec.com ////
|
5 |
|
|
//// ////
|
6 |
|
|
//// Downloaded from: http://www.opencores.org ////
|
7 |
|
|
/////////////////////////////////////////////////////////////////////
|
8 |
|
|
//// ////
|
9 |
|
|
//// Copyright (C) 2010 Provartec LTD ////
|
10 |
|
|
//// www.provartec.com ////
|
11 |
|
|
//// info@provartec.com ////
|
12 |
|
|
//// ////
|
13 |
|
|
//// This source file may be used and distributed without ////
|
14 |
|
|
//// restriction provided that this copyright statement is not ////
|
15 |
|
|
//// removed from the file and that any derivative work contains ////
|
16 |
|
|
//// the original copyright notice and the associated disclaimer.////
|
17 |
|
|
//// ////
|
18 |
|
|
//// This source file is free software; you can redistribute it ////
|
19 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
20 |
|
|
//// Public License as published by the Free Software Foundation.////
|
21 |
|
|
//// ////
|
22 |
|
|
//// This source is distributed in the hope that it will be ////
|
23 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
24 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
25 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more////
|
26 |
|
|
//// details. http://www.gnu.org/licenses/lgpl.html ////
|
27 |
|
|
//// ////
|
28 |
|
|
/////////////////////////////////////////////////////////////////////
|
29 |
2 |
eyalhoc |
//---------------------------------------------------------
|
30 |
|
|
//-- File generated by RobustVerilog parser
|
31 |
|
|
//-- Version: 1.0
|
32 |
|
|
//-- Invoked Fri Mar 25 23:33:02 2011
|
33 |
|
|
//--
|
34 |
|
|
//-- Source file: prgen_swap32.v
|
35 |
|
|
//---------------------------------------------------------
|
36 |
|
|
|
37 |
|
|
|
38 |
|
|
|
39 |
|
|
module prgen_swap32 (end_swap,data_in,data_out,bsel_in,bsel_out);
|
40 |
|
|
|
41 |
|
|
input [1:0] end_swap;
|
42 |
|
|
input [31:0] data_in;
|
43 |
|
|
output [31:0] data_out;
|
44 |
|
|
input [3:0] bsel_in;
|
45 |
|
|
output [3:0] bsel_out;
|
46 |
|
|
|
47 |
|
|
|
48 |
|
|
reg [31:0] data_out;
|
49 |
|
|
reg [3:0] bsel_out;
|
50 |
|
|
|
51 |
|
|
|
52 |
|
|
|
53 |
|
|
always @(/*AUTOSENSE*/data_in or end_swap)
|
54 |
|
|
begin
|
55 |
|
|
case (end_swap[1:0])
|
56 |
|
|
2'b00 : data_out = data_in;
|
57 |
|
|
2'b01 : data_out = {data_in[23:16], data_in[31:24], data_in[7:0], data_in[15:8]};
|
58 |
|
|
2'b10 : data_out = {data_in[7:0], data_in[15:8], data_in[23:16], data_in[31:24]};
|
59 |
|
|
2'b11 : data_out = {data_in[7:0], data_in[15:8], data_in[23:16], data_in[31:24]};
|
60 |
|
|
endcase
|
61 |
|
|
end
|
62 |
|
|
|
63 |
|
|
always @(/*AUTOSENSE*/bsel_in or end_swap)
|
64 |
|
|
begin
|
65 |
|
|
case (end_swap[1:0])
|
66 |
|
|
2'b00 : bsel_out = bsel_in;
|
67 |
|
|
2'b01 : bsel_out = {bsel_in[2], bsel_in[3], bsel_in[0], bsel_in[1]};
|
68 |
|
|
2'b10 : bsel_out = {bsel_in[0], bsel_in[1], bsel_in[2], bsel_in[3]};
|
69 |
|
|
2'b11 : bsel_out = {bsel_in[0], bsel_in[1], bsel_in[2], bsel_in[3]};
|
70 |
|
|
endcase
|
71 |
|
|
end
|
72 |
|
|
|
73 |
|
|
|
74 |
|
|
endmodule
|
75 |
|
|
|
76 |
|
|
|
77 |
|
|
|