I have the code on the left given and i am asked what is stored in the addresses from 0H...15H. I found it very easy all the answers till 0AH came. I have no clue where the '0D' or '08' or 'FE' are coming from. here is the Code:
WERT equ 127
org 0
MOV SP,#0FH
CLR A
MOV PSW,#0FFH
ADDC A,#WERT
ACALL UP
SJMP $
UP:
PUSH ACC
PUSH PSW
POP PSW
POP ACC
RET
END
What is in the addresses of the Physical Memory stored from 00h to 15H? I answered all the ones till 0AH i have no clue how there can be a 80H.