Show the results after executing following instructions Solu
     Show the results after executing following instructions:   
  
  Solution
a. Loads hex value 87 into X; X = 0087
b. Loads content in memory 0103 into A; A = 2B
C. LDX $FD loads the contents of addresses$ 00FD and $00FE into Reg X;X = A012
D. LDX $FE loads the contents of addresses$ 00FE and $00FF into Reg X;X = 1245
LDAA 4,X; load into Reg A the value found at the address $1245 with an offset of 4; i.e., $1249
e. LDX #$00FD loads FD hex value into X; X = 00FD
LDAA 2,X; load into Reg A the value found at the address $00FD with an offset of 2; i.e., $0100 ; A = 00;
F. LDX $0100 ; loads the contents of addresses$ 0100 and $0101 into Reg X;X = 00FC
LDAA 4,X ; load into Reg A the value found at the address $00FC with an offset of 4; i.e., $0100 ; A = 00;

