File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
test/src/com/xilinx/rapidwright/rwroute Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,8 @@ public class TestGlobalSignalRouting {
35
35
@ ParameterizedTest
36
36
@ CsvSource ({
37
37
"CLKBWRCLK" ,
38
- "RSTRAMB"
38
+ "RSTRAMB" ,
39
+ "WEBWE[7]"
39
40
})
40
41
public void testRAMB36 (String logicalPinName ) {
41
42
Design design = new Design ("design" , Device .AWS_F1 );
@@ -47,6 +48,9 @@ public void testRAMB36(String logicalPinName) {
47
48
if (logicalPinName .equals ("CLKBWRCLK" ) || logicalPinName .equals ("RSTRAMB" )) {
48
49
target .addPinMapping (logicalPinName + "L" , logicalPinName );
49
50
target .addPinMapping (logicalPinName + "U" , logicalPinName );
51
+ } else if (logicalPinName .equals ("WEBWE[7]" )) {
52
+ target .addPinMapping ("WEAL3" , logicalPinName );
53
+ target .addPinMapping ("WEAU3" , logicalPinName );
50
54
}
51
55
globalNet .connect (target , logicalPinName );
52
56
You can’t perform that action at this time.
0 commit comments