DEFINITION - SUB
    FillGPMem addr&, size&, byteVal%% -- memset() like memory fill function

OPERATION
    FillGPMem is a fast memory fill function.  It can deal with arbitrary
    lengths and its pointer on arbitrary alignments.  It will attempt to
    optimize larger fills, it uses byte fills for small blocks or parts of
    larger blocks outside of the ideal alignment.

ARGUMENTS
    addr&     -- a address pointer to the memory block to fill
    size&     -- the size (in bytes) of the memory block
    byteVal%% -- the byte value, which is written to all bytes of
                 the given block

SEE ALSO
    Support Functions

                                                 Back to Function Reference