Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How can I search for one layer and replace it by another layer? (SKILL)

Status
Not open for further replies.

nickmu

Junior Member level 2
Joined
Jan 15, 2005
Messages
21
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
114
can someone show me how can I search one layer and replace it by an
other layer ?
 

skill Q?

u want it in skill language codes
 

Re: skill Q?

In your Case,

Just use the search and replace option from the edit menu in virtuoso.

Or you can do it selectively by using the below skill code.

============To Change the Layers======================
procedure(change_layer(new_layer)
sel_window = getCurrentWindow()
sel_set = geGetSelectedSet()
if(!sel_set then
printf("Please select an object\n")
);end if
sel_set~>layerName = new_layer
)

hiSetBindKey("Layout" "Ctrl Shift<Key>1" "change_layer(\"METAL1\")")
hiSetBindKey("Layout" "Ctrl Shift<Key>2" "change_layer(\"METAL2\")")
===========================================================
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top