5.1.7 .text

Assemble the following statements onto the end of the .text (executable code) section.

Example

   ; The following code will be placed in the executable
   ; code section.
.text
.global __reset
__reset:
   mov BAR, w1
   mov FOO, w0
LOOP:
   cp0.b [w0]
   bra Z, DONE
   mov.b [w0++], [w1++]
   bra LOOP
DONE:
   .end