5.1.6 Text Directive

Definition

The .text directive indicates that the output of the assembly code following should be placed at the end of the .text (executable code) section, for example.

    .text    
             .ent _main_entry
_main_entry:
             jal main
             nop
             jal exit
             nop
1:
             b  1b
             nop
             .end _main_entry