* Demonstrate the effect of DS directive * Assemble with: as255 instr * Look at the output file a.lst ORG $1000 move.b d0, d1 L1: move.b d0, d1 move.b d0, d1 A: ds.b 10 move.b d0, d1 L2: move.b d0, d1 move.b d0, d1 B: ds.w 10 move.b d0, d1 L3: move.b d0, d1 move.b d0, d1 C: ds.l 10 move.b d0, d1 L4: move.b d0, d1 move.b d0, d1 end