Skip to content

Commit 7b15509

Browse files
committed
mock-array: add record for ins and outs
prepare for future experiments where ins and outs can be handled in one go instead of having to copy and paste code for each direction Signed-off-by: Øyvind Harboe <[email protected]>
1 parent a5db6c0 commit 7b15509

File tree

3 files changed

+159
-152
lines changed

3 files changed

+159
-152
lines changed

flow/designs/asap7/mock-array/io.tcl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@ source designs/asap7/mock-array/util.tcl
33
set assignments [list \
44
top \
55
[ concat \
6-
{*}[match_pins io_insDown_.*] \
7-
{*}[match_pins io_outsUp_.*] \
6+
{*}[match_pins io_ins_down_.*] \
7+
{*}[match_pins io_outs_up_.*] \
88
] \
99
bottom \
1010
[ concat \
11-
{*}[match_pins io_insUp_.*] \
12-
{*}[match_pins io_outsDown_.*] \
11+
{*}[match_pins io_ins_up_.*] \
12+
{*}[match_pins io_outs_down_.*] \
1313
] \
1414
left \
1515
[ concat \
16-
{*}[match_pins io_insRight_.*] \
17-
{*}[match_pins io_outsLeft_.*] \
16+
{*}[match_pins io_ins_right_.*] \
17+
{*}[match_pins io_outs_left_.*] \
1818
] \
1919
right \
2020
[ concat \
21-
{*}[match_pins io_insLeft_.*] \
22-
{*}[match_pins io_outsRight_.*] \
21+
{*}[match_pins io_ins_left_.*] \
22+
{*}[match_pins io_outs_right_.*] \
2323
{*}[match_pins io_lsbs_.*] \
2424
] \
2525
]

0 commit comments

Comments
 (0)