In the following code, determine the values of the symbols here and there. Write the object code in hexadecimal. (Do not predict the output). BR there Here: .Word 9 there: DECO here, d stop . end.

Respuesta :

Answer:

Answer explained below

Explanation:

The value of here is 9

The value of there is hexadecimal value of DECO here, d = 0x39 aaaa (aaaa is the memory address of here )

We have the object code :-

let's take there address is 0x0007

0x0005 BR there :- 0x120020

0x0007 here: .WORD 9

310003 there: DECO here,d - 0x390007

310005 STOP

.END