+ All Categories
Home > Documents > ARM Instruction Set

ARM Instruction Set

Date post: 27-Sep-2015
Category:
Upload: shivam-jain
View: 222 times
Download: 2 times
Share this document with a friend
Description:
notes
25
The ARM Instruction Set Sandeep Srivastava
Transcript

The ARM Instruction Set

The ARM Instruction SetSandeep SrivastavaSet of All ARM Instructions

Set of all ARM Instructions

Move InstructionsPRE r5 = 5r7 = 8MOV r7, r5 ; let r7 = r5POST r5 = 5r7 = 5

Move Instructions Use of Barrel ShifterPRE r5 = 5r7 = 8MOV r7, r5, LSL #2 ; let r7 = r5*4 = (r5


Recommended