Assembly Language Programs
Assembly Language Programs
numbers.
ORG 100
LDA A
STA TMP
LDA B
STA A
LDA TMP
STA B
HLT
A, DEC 3
B, DEC 4
TMP, DEC 0
END
4) Write the program to logically OR the two numbers without using “OR”
instruction.