as: Ds

 
 7.15 '.ds[SIZE] NUMBER [,FILL]'
 ===============================
 
 This directive emits NUMBER copies of FILL, each of SIZE bytes.  Both
 NUMBER and FILL are absolute expressions.  If the comma and FILL are
 omitted, FILL is assumed to be zero.  The SIZE suffix, if present, must
 be one of:
 
 ''.b''
      Emits single byte values.
 ''.d''
      Emits 8-byte values.
 ''.l''
      Emits 4-byte values.
 ''.p''
      Emits 12-byte values.
 ''.s''
      Emits 4-byte values.
 ''.w''
      Emits 2-byte values.
 ''.x''
      Emits 12-byte values.
 
    Note - unlike the '.dcb' directive the '.d', '.s' and '.x' suffixes
 do not indicate that floating-point values are to be inserted.
 
    If the SIZE suffix is omitted then '.w' is assumed.
 
    The byte ordering is target dependent.