[Overview][Constants][Types][Classes][Procedures and functions][Variables] Reference for unit 'System' (#rtl)

FillWord

Fill memory region with 16-bit pattern

Declaration

Source position: systemh.inc line 375

procedure FillWord(

  var x;

  count: SizeInt;

  Value: Word

);

Description

Fillwordfills the memory starting at Xwith Countwords with value equal to Value. A word is 2 bytes in size.

Errors

No checking on the size of Xis done.

See also

Fillchar

  

Fill memory region with certain character

Move

  

Move data from one location in memory to another

Example

Program Example76;

{ Program to demonstrate the FillWord function. }

Var W : Array[1..100] of Word;

begin
  { Quick initialization of array W }
  FillWord(W,100,0);
end.