projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8791073
)
Wrong fixed value
author
diego
<diego@symbioticeda.com>
Fri, 17 Apr 2020 15:15:22 +0000
(10:15 -0500)
committer
diego
<diego@symbioticeda.com>
Fri, 17 Apr 2020 15:15:22 +0000
(10:15 -0500)
tests/arch/common/dynamic_part_select/reversed.v
patch
|
blob
|
history
diff --git
a/tests/arch/common/dynamic_part_select/reversed.v
b/tests/arch/common/dynamic_part_select/reversed.v
index 6ef0e10bea54b085bce0b1a8928a23394f92e7c5..5b0a77c112d310e899a1d7466dc1928254c98eae 100644
(file)
--- a/
tests/arch/common/dynamic_part_select/reversed.v
+++ b/
tests/arch/common/dynamic_part_select/reversed.v
@@
-7,7
+7,7
@@
module reversed #(parameter WIDTH=256, SELW=2)
localparam SLICE = WIDTH/(SELW**2);
always @(posedge clk) begin
- dout[(
1024
-ctrl*sel)-:SLICE] <= din;
+ dout[(
WIDTH
-ctrl*sel)-:SLICE] <= din;
end
endmodule