! Demonstrate effect of unaligned access ! Robbie Gates, 2000 .data msg: .asciz "Message One" .text set msg, %r1 ba loop_entry nop loop: inc %r1 loop_entry: ld [%r1], %r2 ! should be ldub cmp %r2, %r0 bne loop nop ta 0