| 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
|---|
| Pointer | Sequence | Example |
|---|---|---|
| X | Read/Write from adress X, don't change the pointer | LD R1,X ST X,R1 |
| X+ | Read/Write from/to adress X and increment the pointer afterwards by one | LD R1,X+ ST X+,R1 |
| -X | Decrement the pointer by one and read/write from/to the new adress afterwards | LD R1,-X ST -X,R1 |