! !Purpose: !This program tests if the assembler can detect and report !that an instruction or a pseudo operation is not aligned !on half word boundary or word boudary !Description: !"add", ".half" and ".word" are used on unaligned boundaries .section ".text" .align 4 .byte 0 add %r1, %r2, %r3 !not aligned .section ".data" .align 4 .byte 0 .half 0 !not aligned .align 4 .half 0 .word 0 !not aligned