Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. Register: [ {,:}]
  2.  
  3. This is the simplest form. Data will be loaded and stored to the specified address.
  4.  
  5. Register with increment after: [{,:}]!
  6. Use this to update the pointer after loading or storing, ready to load or store the next elements. The increment is equal to the number of bytes read or written by the instruction.
  7.  
  8. Register with post-index: [{,:}],
  9. After the memory access, the pointer is incremented by the value in register Rm. This is useful when reading or writing groups of elements that are separated by fixed widths, eg. when reading a vertical line of data from an image.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement