-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCover.tcl
More file actions
26 lines (23 loc) · 694 Bytes
/
Cover.tcl
File metadata and controls
26 lines (23 loc) · 694 Bytes
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
## (c) Krishna Subramanian <https://github.com/mongrelgem>
## UART Project <https://github.com/mongrelgem/USART-RTL-Physical-Design>
## Report Bugs and Issues <https://github.com/mongrelgem/USART-RTL-Physical-Design/issues>
#######################
proc pin_cover {} {
set terms [dbGet top.terms]
foreach term $terms {
set pin [dbGet $term.pins.allShapes.shapes.rect]
set name [dbGet $term.name]
set side [dbGet $term.side]
set layer [dbGet $term.layer.name]
puts $name
puts $pin
puts $side
puts $layer
add_shape -net $name -layer $layer -rect $pin
}
uiSetTool selectTool;
}
pin_cover
puts "#############################################################"
puts "Done!"
#######################