Sign in
foss-eda-tools
/
third_party
/
opencircuitdesign.com
/
open_pdks
/
5cb6c4396a1e58cdc3ef95c4f2e4aeb84a434dc8
/
.
/
sky130
/
openlane
/
cvc
/
cdl.awk
blob: 96c7c087ca059e896c0911a41947b99d8e260e6c [
file
] [
log
] [
blame
]
/Black-box entry subcircuit/
{
# remove black-box defintions
while
(
$1
!=
".ends"
)
{
getline
;
}
getline
;
}
/^
\*
/
{
# remove comments
next
;
}
/^.
ENDS
.*/
{
# remove name from ends lines
print
$1
;
next
;
}
{
print
$0
;
}