(Solved) : Modify Example 53 Output Hello Instead Hi Submit Code Text Entry Example 53 Stan Warford Q37235212 . . .
Modify example 5.3 so that the output is “Hello” instead of”Hi”.
Submit your code as a text entry.
Here is example 5.3:
;Stan Warford
;May 1, 2016
;A program to output “Hi”
;
LDBA 0x000D,d ;Load byte accumulator ‘H’
STBA 0xFC16,d ;Store byte accumulator output device
LDBA 0x000E,d ;Load byte accumulator ‘i’
STBA 0xFC16,d ;Store byte accumulator output device
STOP ;Stop
.ASCII “Hi” ;ASCII “Hi” characters
.END
Expert Answer
Answer to Modify example 5.3 so that the output is “Hello” instead of “Hi”. Submit your code as a text entry. Here is example 5.3:…
OR