memset command

    (A) Function
        Setting a value to a continuous region in a specific memory address. 

    (B) Format

         memset  <memory>  <address>  { <value> }

    (C) Parameters
        <memory>
          Designate a facility in which you set a value. 
          The facility type must be memory. 

        <address>
          Designate a head address of memory to start a setting by 
          an unsigned integer.

        <value>
          This numeral shows the number of the word you set.
          This parameter is a binary digit string.
          If the bit width of a facility is not equal to that of 
          a binary digit string, the upper bit of the binary digit
          string gets 0, or otherwise the upper bit is cut off.

    (D) Notes
        If an SFL memory facility is installed, all the addresses of 
        the facility are initialized and then 'u' is put in the every bit.
        For a facility whose type is other than memory, use the set command. 

    (E) Related items
        2.3 Value settings to facilities and reports on facility values
        set command
        memclr command