DRC::def_output: A simple yet useful extension to obtain the output layout and to manipulate it (within limits)

This commit is contained in:
Matthias Koefferlein
2025-07-21 22:21:33 +02:00
parent cb4511b721
commit d4e3872142
8 changed files with 133 additions and 5 deletions
+25
View File
@@ -0,0 +1,25 @@
source $drc_test_source
target $drc_test_target
if $drc_test_deep
deep
end
l1 = input(1, 0)
l2 = input(2, 0)
top_cell = def_output.cell
# Separat 1/0 and 2/0 to two cells L1, L2
output_cell("L1")
top_cell.insert(RBA::DCellInstArray::new(def_output.cell, RBA::DTrans::new))
l1.output(1, 0)
output_cell("L2")
top_cell.insert(RBA::DCellInstArray::new(def_output.cell, RBA::DTrans::new))
l2.output(2, 0)
Binary file not shown.
Binary file not shown.
Binary file not shown.