Adding 'merge_props' and 'merged_props' to DRC

This commit is contained in:
Matthias Koefferlein
2025-08-02 16:12:49 +02:00
parent f9ea9af466
commit ffafebcaae
10 changed files with 109 additions and 33 deletions
+24
View File
@@ -0,0 +1,24 @@
source $drc_test_source
target $drc_test_target
if $drc_test_deep
deep
end
l1 = input(1, 0, enable_props)
l1.output(1, 0)
l1.merged_props.output(10, 0)
l1d = l1.dup
l1d.merge_props
l1d.output(11, 0)
l1.merged_props(2).output(20, 0)
l1d = l1.dup
l1d.merge_props(2)
l1d.output(21, 0)
Binary file not shown.
Binary file not shown.
Binary file not shown.