SPRUI30H November 2015 – May 2024 DRA745 , DRA746 , DRA750 , DRA756
Load Word from Memory with a 16-Bit Unsigned Constant Offset
LDW *+baseR[ucst16], dst
Functional unit = D
32 bit
31 | 16 | 15 | 13 | 12 | 10 | 9 | 0 |
ucst16 | dst | baseR | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
16 | 3 | 3 | opcode |
Loads a word from memory (effective address) to dst. The memory address is formed from a base address register (baseR) and an offset (number of words) that is a 16-bit unsigned constant (ucst16). If an offset is not given, the assembler assigns an offset of zero. Brackets, [ ],must surround the specified offset, if using the optional offset parameter.
The square brackets, [ ], indicate that the ucst16 is scaled by a left-shift of 2 bits. After scaling, ucst16 is added to baseR. The result of the calculation is the effective address to be accessed in memory and the content loaded into dst.
The entire content is loaded into dst.
Word addresses must be aligned on word (two LSBs are 0) boundaries.
None
dst = *(baseR[ucst16])