**ORG $400400
NUM1 DC.B $F0
NUM2 DC.B $80
SUM DS.B 1
ORG $400410
ADNUMS MOVE.B NUM1,D0
MOVE.B NUM2,D1
ADD.B D0,D1
MOVE.B D0,SUM
END $400410
END START**
I have this program ,and because the add does leave a bit on the X (on the ccr) and i want to let the program read it to through the add, how can i use correctly addx ?
Or can i just add a line like "ADD.B#$1,SUM"? Thanks in advance!