I am new to assembly and I'm not sure why my code isn't working.
I'm inputing and displaying in ASCII format, I can see the 1 and 3, but why isn't the addition sum showing?
My program is simply suppose to perform an addition. And display something like:
'>1+3=4
if the inputs are 1 and 3, then if user enters ! it stops, otherwise loops back.
Loop,Load Greater
Output /for the ">" symbol
Input
Output
Store X /Taking input, storing and displaying 1st operand
Load Addr
Output /Loading and displaying "+"
Input
Output
Store Y /Inp, str, displaying 2nd operand
Load Equal
Output /Display "="
Load X
Add Y
Output /Adding then displaying sum
Input
Store Cond
Skipcond 800
Jump Loop
Halt
Greater, DEC 62
X, DEC 0
Addr, DEC 43
Y, Dec 0
Equal, Dec 61
Cond, DEC 0```