Skip to content
This repository has been archived by the owner on Sep 2, 2023. It is now read-only.

Commit

Permalink
doc: ldi/ldhi/ldhio do not support vector operands
Browse files Browse the repository at this point in the history
  • Loading branch information
mbitsnbites committed Jan 19, 2020
1 parent 5b0e883 commit b84d25e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/Instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ Note that most C type instructions are immediate operand versions of correspondi
|STB| x | (1) | | src1, src2, src3 | [src2 + src3] <= src1 (byte) | Store byte |
|STH| x | (1) | | src1, src2, src3 | [src2 + src3] <= src1 (halfword) | Store halfowrd |
|STW| x | (1) | | src1, src2, src3 | [src2 + src3] <= src1 (word) | Store word |
|LDI| x | x | | dst, #i21 | dst <= signextend(i21) | Alt. 1: Load immediate (low 21 bits) |
|LDHI| x | x | | dst, #i21 | dst <= i21 << 11 | Alt. 2: Load immediate (high 21 bits) |
|LDHIO| x | x | | dst, #i21 | dst <= (i21 << 11) \| 0x7ff | Alt. 3: Load immediate with low ones (high 21 bits) |
|LDI| x | | | dst, #i21 | dst <= signextend(i21) | Alt. 1: Load immediate (low 21 bits) |
|LDHI| x | | | dst, #i21 | dst <= i21 << 11 | Alt. 2: Load immediate (high 21 bits) |
|LDHIO| x | | | dst, #i21 | dst <= (i21 << 11) \| 0x7ff | Alt. 3: Load immediate with low ones (high 21 bits) |

See [addressing modes](AddressingModes.md) for more details.

Expand Down

0 comments on commit b84d25e

Please sign in to comment.