Consider the following assembler output:
START 100
MOVER BREG, ONE 101) + 04 2 105
MOVEM BREG, RESULT 102) + 05 2 106
PRINT RESULT 103) + 10 0 106
STOP 104) + 00 0 000
ONE DC '1' 105) + 00 0 001
RESULT DS 1 106)
- What does the + sign before code signifies?
- Why the address of
ONE
is given001
? - Why the entry after the last
RESULT DS 1
statement is left blank?
Note this is not homework - the questioner appears to be asking about something from a text book.