Assume that execution of the following program begins at location $000.
.EQU 0,$000
.EQU ABC,5
LDA# ABC
STA CNT
LOOP: CMA# 0
JGT DONE
DEC CNT
LDA VAL
ADA X
STA X
JMP LOOP
DONE: LDA X
HLT
.EQU 0,$113
X: .BLKW 75
.WORD 0
CNT: .BLKW 1
VAL: .WORD $2A3
.END
Once execution has halted, what will be the contents of the following: (a) the ACC,
(b) Memory [$15E], and (c) Memory [$160]? Do not use CHASM or CUSP to solve
this problem. Do it manually.