From: lkcl <lkcl@web>
Date: Sun, 14 Feb 2021 20:01:03 +0000 (+0000)
Subject: (no commit message)
X-Git-Tag: convert-csv-opcode-to-binary~172
X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9dfccf887266ac3fb994f3348d1bb423a36ac20b;p=libreriscv.git

---

diff --git a/3d_gpu/architecture/dynamic_simd/add.mdwn b/3d_gpu/architecture/dynamic_simd/add.mdwn
index eff8ef146..458fac2aa 100644
--- a/3d_gpu/architecture/dynamic_simd/add.mdwn
+++ b/3d_gpu/architecture/dynamic_simd/add.mdwn
@@ -15,7 +15,7 @@ and take up large resources.
     partition:     P    P    P     (3 bits)
     a        : .... .... .... .... (32 bits)
     b        : .... .... .... .... (32 bits)
-    exp-a    : ....P....P....P.... (32+3 bits, P=1 if no partition)
+    exp-a    : ....P....P....P.... (32+3 bits, P=0 if no partition)
     exp-b    : ....0....0....0.... (32 bits plus 3 zeros)
     exp-o    : ....xN...xN...xN... (32+3 bits - x to be discarded)
     o        : .... N... N... N... (32 bits - x ignored, N is carry-over)
@@ -28,7 +28,7 @@ new version:
     I = P=>c :      I    I    I    c (4 bits)
     a        :  AAAA AAAA AAAA AAAA  (32 bits)
     b        :  BBBB BBBB BBBB BBBB  (32 bits)
-    exp-a    : 0AAAACAAAACAAAACAAAAc (32+3+2 bits, P=1 if no partition)
+    exp-a    : 0AAAACAAAACAAAACAAAAc (32+3+2 bits, P=0 if no partition)
     exp-b    : 0BBBBIBBBBIBBBBIBBBBc (32+2 bits plus 3 zeros)
     exp-o    : o....oN...oN...oN...x (32+3+2 bits - x to be discarded)
     o        :  .... N... N... N...  (32 bits - x ignored, N is carry-over)