Show the contents of the stack after executing each line of
Show the contents of the stack after executing each line of the following code. ROM address and its contents are in hexadecimal number system.
Solution
data-name DB data-value data-value data-name ORG 500H DATA1: DB 28 ;decimal (1C in hex) DATA2: DB 00110101B;binary (35 in hex) DATA3: DB 39H ;hexadecimal data-name is the label referring to the ROM address containing the content data-value. It is an address, DATA1=0500H, DATA2=0501H.
