* * input: A0 = ADDRESS of the first integer * A1 = ADDRESS of the second integer * output: d0 = sum * xdef Start, Stop, End Start: move.b #%11110000, d0 move.b #%10101010, d1 and.b d1, d0 move.b #%11110000, d0 move.b #%10101010, d1 or.b d1, d0 Stop: nop nop End: end