Image

Table 6.10

Index mode control bits for memory instructions

PWIndex Mode
00Post-index
01Not supported
10Offset
11Pre-index

Table 6.11

Memory operation type control bits for memory instructions

LBInstruction
00STR
01STRB
10LDR
11LDRB

Example 6.3

Translating Memory Instructions into Machine Language

Translate the following assembly language statement into machine language.

STR R11, [R5], #-26

Solution

STR is a memory instruction, so it has an op of 012. According to Table 6.11, L = 0 and B = 0 for STR. The instruction uses post-indexing, so according to Table 6.10, P = 0 and W = 0. The immediate offset is subtracted from the base, so I¯=0 and U = 0.

Get Digital Design and Computer Architecture, ARM Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.