| PO | RT | RA | RB | TLI | XO | Rc |
```
+# VA-FORM
+
+Add the following entry to VA-FORM in Book I 1.6.1.12
+
+```
+|0 |6 |11 |16 |21|22 |26|27 |
+| PO | RT | RA | RB | RC |nh| XO |
+```
+
# Word Instruction Fields
Add the following to Book I 1.6.2
Formats: CRB
```
+```
+nh (26)
+ Nibble High. Field used by binlog to decide if the look-up-table should
+ be taken from bits 60:63 or 56:59 of RC.
+ Formats: VA
+```
+
```
TLI (21:28)
Field used by the ternlogi instruction as the
Add `TLI` to the `Formats:` list of all of `RA`, `RB`, `RT`, and `Rc`.
Add `CRB` to the `Formats:` list of all of `BF`, `BFA`, `BFB`, and `BFC`.
+Add `VA` to the `Formats:` list of `XO (27:31)`.
+
+----------
+
+\newpage{}
# Ternary Logic Immediate TLI-form
\newpage{}
+# Dynamic Binary Logic VA-form
+
+* `binlog RT, RA, RB, RC, nh`
+
+| 0-5 | 6-10 | 11-15 | 16-20 | 21-25 | 26 | 27-31 | Form |
+|-----|------|-------|-------|-------|----|-------|---------|
+| PO | RT | RA | RB | RC | nh | XO | VA-Form |
+
+Pseudocode:
+
+```
+if nh = 1 then
+ lut <- (RC)[56:59]
+else
+ lut <- (RC)[60:63]
+do i = 0 to 63
+ idx <- (RB)[i] || (RA)[i] # compute index from current bits
+ result[i] <- lut[3 - idx] # subtract from 3 to index in LSB0 order
+RT <- result
+```
+
+Special registers altered:
+
+```
+None
+```
+
+**Programming Note**:
+
+Dynamic Ternary Logic may be emulated by appropriate combination of `binlog` and `ternlogi`:
+
+```
+# compute r3 = ternlog(r4, r5, r6, table=r7)
+# compute the values for when r6[i] = 0:
+binlog r3, r4, r5, r7, 0 # takes look-up-table from LSB 4 bits
+# compute the values for when r6[i] = 1:
+binlog r4, r4, r5, r7, 1 # takes look-up-table from second-to-LSB 4 bits
+# mux the two results together: r3 = (r3 & ~r6) | (r4 & r6)
+ternlogi r3, r4, r6, 0b11011000
+```
+
+----------
+
+\newpage{}
+
----------