1/10
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
Describe logical instructions

Describe the and logical operator

Describe the OR operator

Describe the BIC operator

Describe the XOR operator

describe the following bitwise operations in arm and C syntax:
not r1 → r0
r1 and r2 → r0
r1 or r2 → r0
r1 xor r2 → r0
r1 bic r2 → r0

Describe:
shift instructions
rotate
logical shift left
logical shift right
rotate right

Describe:
how to use bit shifting for multiplication and division

Describe:
how to set bits
how to clear bits

Describe barrel shifters

Describe:
add with carry
subtract with carry
reverse subtract
reverse subtract with carry
why reverse subtract is used
