! !Purpose: !This program tests if the assembler can detect and report !invalid directive usage and invalid directive argument values !Description: !Data initialization directives are used in the .bss section !which does not allow data initializations. !Invalid directive argument values are used in the .data section. .section ".bss" .ascii "hello\n" .asciz "hello\n" .byte 1 .half 2 .word 3 .section ".data" .skip -1 .align 3