File tree Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,8 @@ def bench():
55
55
DEST_WIDTH = 8
56
56
USER_ENABLE = 1
57
57
USER_WIDTH = 1
58
+ ARB_TYPE = "PRIORITY"
59
+ LSB_PRIORITY = "HIGH"
58
60
59
61
# Inputs
60
62
clk = Signal (bool (0 ))
Original file line number Diff line number Diff line change @@ -42,6 +42,8 @@ parameter DEST_ENABLE = 1;
42
42
parameter DEST_WIDTH = 8 ;
43
43
parameter USER_ENABLE = 1 ;
44
44
parameter USER_WIDTH = 1 ;
45
+ parameter ARB_TYPE = "PRIORITY" ;
46
+ parameter LSB_PRIORITY = "HIGH" ;
45
47
46
48
// Inputs
47
49
reg clk = 0 ;
@@ -110,7 +112,9 @@ axis_arb_mux #(
110
112
.DEST_ENABLE(DEST_ENABLE),
111
113
.DEST_WIDTH(DEST_WIDTH),
112
114
.USER_ENABLE(USER_ENABLE),
113
- .USER_WIDTH(USER_WIDTH)
115
+ .USER_WIDTH(USER_WIDTH),
116
+ .ARB_TYPE(ARB_TYPE),
117
+ .LSB_PRIORITY(LSB_PRIORITY)
114
118
)
115
119
UUT (
116
120
.clk(clk),
Original file line number Diff line number Diff line change @@ -55,6 +55,8 @@ def bench():
55
55
DEST_WIDTH = 8
56
56
USER_ENABLE = 1
57
57
USER_WIDTH = 1
58
+ ARB_TYPE = "PRIORITY"
59
+ LSB_PRIORITY = "HIGH"
58
60
59
61
# Inputs
60
62
clk = Signal (bool (0 ))
Original file line number Diff line number Diff line change @@ -42,6 +42,8 @@ parameter DEST_ENABLE = 1;
42
42
parameter DEST_WIDTH = 8 ;
43
43
parameter USER_ENABLE = 1 ;
44
44
parameter USER_WIDTH = 1 ;
45
+ parameter ARB_TYPE = "PRIORITY" ;
46
+ parameter LSB_PRIORITY = "HIGH" ;
45
47
46
48
// Inputs
47
49
reg clk = 0 ;
@@ -110,7 +112,9 @@ axis_arb_mux #(
110
112
.DEST_ENABLE(DEST_ENABLE),
111
113
.DEST_WIDTH(DEST_WIDTH),
112
114
.USER_ENABLE(USER_ENABLE),
113
- .USER_WIDTH(USER_WIDTH)
115
+ .USER_WIDTH(USER_WIDTH),
116
+ .ARB_TYPE(ARB_TYPE),
117
+ .LSB_PRIORITY(LSB_PRIORITY)
114
118
)
115
119
UUT (
116
120
.clk(clk),
You can’t perform that action at this time.
0 commit comments