From 6055b9827611e1dbe656b045f4b316fb9c63c0e0 Mon Sep 17 00:00:00 2001
From: Andreas Westerwick <westerwick@pconas.de>
Date: Mon, 12 Aug 2019 09:25:07 +0200
Subject: [PATCH] Revert "change order of tasks"

This reverts commit c9ed69b82e8517efd838a4c57c5e67b582a67b39.
---
 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 401f1e9..48c7a4e 100755
--- a/Tools/python/split_layers.py
+++ b/Tools/python/split_layers.py
@@ -8,25 +8,25 @@ orig_box_width=10.
 orig_box_spacing=10.
 
 layer_mapping = {
-	'via1' : [16],
-	'via2' : [18],
-	'contact' : [14],
-	'metal1' : [15],
-	'metal2' : [17],
-	'metal3' : [19],
+	'pwell' : [2],
+	'nwell' : [3],
+	'pbase' : [4],
+	'nbase' : [5],
 	'sti' : [6],
 	'fox' : [7],
 	'sonos' : [8],
 	'gate' : [9],
+	'implant_stop' : [10],
 	'nimplant' : [11],
 	'pimplant' : [12],
-	'glass' : [20],
-	'pbase' : [4],
-	'nbase' : [5],
-	'pwell' : [2],
-	'nwell' : [3],
 	'silicide_block' : [13],
-	'implant_stop' : [10],
+	'contact' : [14],
+	'metal1' : [15],
+	'via1' : [16],
+	'metal2' : [17],
+	'via2' : [18],
+	'metal3' : [19],
+	'glass' : [20],
 }
 
 def get_gds_magic_script(layout_path,cellname):
-- 
GitLab