Problems 2.10: Assume the registers x5 and x6 hold the values 0x8000000000000000 and 0xD000000000000000, respectively.
2.10.1: What is the value of x30 for the following assembly code?
add x30, x5, x6
2.10.2: Is the result in x30 the desired result, or has there been overflow?
2.10.3: For the contents of x5 and x6 as specified above, what is the value of x30 for the following assembly code?
sub x30, x5, x6
2.10.4: Is the result in x30 the desired result, or has there been overflow?
2.10.5: For the contents of registers x5 and x6 as specified above what is the value of x30 for the following assembly code?
add x30, x5, x6
add x30, x30, x5