Fill memory region with 16-bit pattern.
Source position: systemh.inc line 914
procedure FillWord( |
var x; |
count: SizeInt; |
Value: Word |
); |
Fillword fills the memory starting at X with Count words with value equal to Value. A word is 2 bytes in size.
No checking on the size of X is done.
|
Fill memory region with certain character. |
|
|
Move data from one location in memory to another. |
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.