as.info: Rept

Go forward to Sbttl
Go backward to Quad
Go up to Pseudo Ops
Go to the top op as

`.rept COUNT'

   Repeat the sequence of lines between the `.rept' directive and the
next `.endr' directive COUNT times.
   For example, assembling
             .rept   3
             .long   0
             .endr
   is equivalent to assembling
             .long   0
             .long   0
             .long   0