forked from pConst/basic_verilog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslicer_2d.sv
64 lines (46 loc) · 1.38 KB
/
slicer_2d.sv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//------------------------------------------------------------------------------
// slicer_2d.sv
// Konstantin Pavlov, [email protected]
//------------------------------------------------------------------------------
// INFO -------------------------------------------------------------------------
// Arbitrary slicer for 2D packed SystemVerilog arrays
// Slices along any array edge, all array sides simultaneously
//
// You can also generalize this aproach to support as many dimentions as needed
//
// This module does NOT consume any FPGA resources though it is absolutely
// synthesizable
//
/* --- INSTANTIATION TEMPLATE BEGIN ---
slicer_2d #(
.I2_HI( 3 ), .I2_LO( 0 ),
.I1_HI( 7 ), .I1_LO( 0 ),
.O2_HI( 2 ), .O2_LO( 1 ),
.O1_HI( 2 ), .O1_LO( 1 )
) S1 (
.in ( a[3:0][7:0] ),
.out( b[2:1][2:1] )
);
--- INSTANTIATION TEMPLATE END ---*/
module slicer_2d #( parameter
// input array shape
I2_HI = 3, // most significant size
I2_LO = 0,
I1_HI = 7, // least significant size
I1_LO = 0,
// sliced array shape
O2_HI = 2, // most significant size
O2_LO = 1,
O1_HI = 2, // least significant size
O1_LO = 1
)(
input [I2_HI:I2_LO][I1_HI:I1_LO] in,
output logic [O2_HI:O2_LO][O1_HI:O1_LO] out
);
integer i;
always_comb begin
for ( i=O2_LO; i<=O2_HI; i++ ) begin
out[i][O1_HI:O1_LO] = in[i][O1_HI:O1_LO];
end
end
endmodule