ASC11 value of NoTe = 0x 4E6F5465 ! didnt know if i had to put the quotes in or not so I left it as a 32 bit hex number without the quotes A: st ox 4E6F5465, %r1 ! Stores ox4E6F5465 into r1 B: st %r1, [ox800] ! Stores register 1 into memory location ox800 C: st ox 00000000, %r1 ! Stores ox00000000 into r1 making it null D: add ox10101,[ox800],[ox800] ! Adds ox10101 and memory location [ox800] and stores it in [ox800] E: st [ox800], %r31 ! Stores the memory location [ox800] into highest register r31 F: xor %r31, %r1, %r7 ! exclusive or's r31 and r1 together and stores it in r7 G: st %r7, [ox400] ! Stores r7 into memory location ox400