What is the output of the following Pep/9 code, if the input is 5, 9, 6, -12, 7, 14. Properly comment the progtram and explain the purpose. BR main number: .EQUATE 6 j: .EQUATE 4 amount: .EQUATE 2 result: .EQUATE 0 main: SUBSP 8, i DECI number, s LDWA 0, i STWA result, s LDWA 1, i STWA j, s for: CPWA number, s BRGT endFor DECI amount, s LDWA amount, s ADDA result, s STWA result, s LDWA j, s ADDA 1, i STWA j, s BR for endFor: STRO msg, d DECO result, s LDBA ‘\n’, i STBA charOut, d ADDSP 8, i STOP msg: .ASCII “Result = \x00” .END
What is the output of the following Pep/9 code, if the input is 5, 9, 6, -12, 7, 14. Properly comment the progtram and explain the purpose.
BR main
number: .EQUATE 6
j: .EQUATE 4
amount: .EQUATE 2
result: .EQUATE 0
main: SUBSP 8, i
DECI number, s
LDWA 0, i
STWA result, s
LDWA 1, i
STWA j, s
for: CPWA number, s
BRGT endFor
DECI amount, s
LDWA amount, s
ADDA result, s
STWA result, s
LDWA j, s
ADDA 1, i
STWA j, s
BR for
endFor: STRO msg, d
DECO result, s
LDBA ‘\n’, i
STBA charOut, d
ADDSP 8, i
STOP
msg: .ASCII “Result = \x00”
.END
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 2 images