* Demonstrate the effect of DC directive * Assemble with: as255 dc * Look at the output file a.lst ORG $1000 move.b d0, d1 move.b d0, d1 A: dc.b 10, 1, 2, 3 move.b d0, d1 move.b d0, d1 B: dc.w 10, 1, 2, 3 move.b d0, d1 move.b d0, d1 C: dc.l 10, 1, 2, 3 move.b d0, d1 move.b d0, d1 end