diff --git a/distribution/ReleaseNotes.txt b/distribution/ReleaseNotes.txt
index 8c9c8d9af..c6fe654b7 100644
--- a/distribution/ReleaseNotes.txt
+++ b/distribution/ReleaseNotes.txt
@@ -1,6 +1,6 @@
Release Notes
-planned as V0.11
+planned as v0.11
- Added floating gate FETs
v0.10, released on 09. Apr 2017
diff --git a/src/main/dig/cmos/sram_simple.dig b/src/main/dig/cmos/sram_simple.dig
index 7bc58d453..69a2fc388 100644
--- a/src/main/dig/cmos/sram_simple.dig
+++ b/src/main/dig/cmos/sram_simple.dig
@@ -98,7 +98,7 @@
true
-
+
Driver
@@ -108,7 +108,7 @@
-
+
In
@@ -122,7 +122,7 @@
WE
-
+
In
@@ -136,7 +136,7 @@
Data
-
+
Not
@@ -146,7 +146,7 @@
-
+
Out
@@ -160,7 +160,7 @@
D
-
+
NFET
@@ -274,6 +274,9 @@
# check
1 0 0 0 0
0 1 0 0 0
+
+# if no word line is high, output is in high Z state
+ 0 0 0 x z
@@ -282,22 +285,14 @@
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
@@ -310,6 +305,10 @@
+
+
+
+
@@ -334,10 +333,6 @@
-
-
-
-
@@ -346,6 +341,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -390,33 +405,29 @@
-
-
-
-
-
-
-
-
-
-
+
+
-
-
+
+
-
+
+
+
+
+
-
+
@@ -543,28 +554,28 @@
-
-
+
+
-
+
+
+
+
+
-
-
-
-
-
-
+
+
diff --git a/src/main/java/de/neemann/digital/draw/shapes/FGFETShapeN.java b/src/main/java/de/neemann/digital/draw/shapes/FGFETShapeN.java
index 21ea31d2d..d00aee018 100644
--- a/src/main/java/de/neemann/digital/draw/shapes/FGFETShapeN.java
+++ b/src/main/java/de/neemann/digital/draw/shapes/FGFETShapeN.java
@@ -16,10 +16,10 @@ import static de.neemann.digital.draw.shapes.GenericShape.SIZE;
import static de.neemann.digital.draw.shapes.GenericShape.SIZE2;
/**
- * The n-chan FET shape
+ * The n-chan floating gate FET shape
*/
public class FGFETShapeN extends FETShape {
- static final Style CHARGED_GATE = new Style(Style.MAXLINETHICK, false, Color.RED);
+ static final Style CHARGED_GATE = new Style(6, false, Color.RED);
private final boolean programmed;
diff --git a/src/main/java/de/neemann/digital/draw/shapes/FGFETShapeP.java b/src/main/java/de/neemann/digital/draw/shapes/FGFETShapeP.java
index 235776ba7..8822454a9 100644
--- a/src/main/java/de/neemann/digital/draw/shapes/FGFETShapeP.java
+++ b/src/main/java/de/neemann/digital/draw/shapes/FGFETShapeP.java
@@ -15,7 +15,7 @@ import static de.neemann.digital.draw.shapes.GenericShape.SIZE;
import static de.neemann.digital.draw.shapes.GenericShape.SIZE2;
/**
- * The p-chan FET shape
+ * The p-chan floating gate FET shape
*/
public class FGFETShapeP extends FETShape {