(no commit message)
authorlkcl <lkcl@web>
Thu, 5 May 2022 06:13:52 +0000 (07:13 +0100)
committerIkiWiki <ikiwiki.info>
Thu, 5 May 2022 06:13:52 +0000 (07:13 +0100)
openpower/sv/vector_ops.mdwn

index c2855da78c5c61cf010546b145aa9f0363b8237e..a30694cd062a0b113e50025c83a077570d130781 100644 (file)
@@ -279,9 +279,15 @@ From QLSKY.png:
     C1 = nand(x1, y1, ~G1)
 
     x2 = nand(CIn, P0, P1, P2)
-    y1 = nand(G0, P1)
-    C1 = nand(x1, y1, ~G1)
-
+    y2 = nand(G0, P1, P2)
+    z2 = nand(G1, P2)
+    C1 = nand(x2, y2, z2, ~G2)
+
+    # Gen*
+    x3 = nand(G0, P1, P2, P3)
+    y3 = nand(G1, P2, P3)
+    z3 = nand(G2, P3)
+    G* = nand(x3, y3, z3, ~G3)
 ```
 
 ```