From c9ed69b82e8517efd838a4c57c5e67b582a67b39 Mon Sep 17 00:00:00 2001 From: Andreas Westerwick <westerwick@pconas.de> Date: Sun, 11 Aug 2019 20:34:25 +0200 Subject: [PATCH] change order of tasks --- Tools/python/split_layers.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Tools/python/split_layers.py b/Tools/python/split_layers.py index c1172d9..8e2c540 100755 --- a/Tools/python/split_layers.py +++ b/Tools/python/split_layers.py @@ -11,25 +11,25 @@ orig_box_width=10. orig_box_spacing=10. layer_mapping = { - 'pwell' : [2], - 'nwell' : [3], - 'pbase' : [4], - 'nbase' : [5], + 'via1' : [16], + 'via2' : [18], + 'contact' : [14], + 'metal1' : [15], + 'metal2' : [17], + 'metal3' : [19], 'sti' : [6], 'fox' : [7], 'sonos' : [8], 'gate' : [9], - 'implant_stop' : [10], 'nimplant' : [11], 'pimplant' : [12], - 'silicide_block' : [13], - 'contact' : [14], - 'metal1' : [15], - 'via1' : [16], - 'metal2' : [17], - 'via2' : [18], - 'metal3' : [19], 'glass' : [20], + 'pbase' : [4], + 'nbase' : [5], + 'pwell' : [2], + 'nwell' : [3], + 'silicide_block' : [13], + 'implant_stop' : [10], } def get_gds_magic_script(layout_path,cellname): -- GitLab