# Problem What is contained in register `r1` after executing the following two instructions in sequence? Assume `r2 = 0x00001234`. ```armasm MOV r1, r2, LSL #4 MOV r1, r2, LSR #4 ``` # Process ... # Answer ``` 0x00000123 ```