Description
Fill RAM with an 8 bit valueDefinition
memset(char *dst, char val, char len)Library
LIB/str_lib.basUsage
On entry:dst is a pointer to a RAM buffer to be filled val is an 8 bit value to copy to each of the bytes of the RAM bufferOn exit:
cnt is the number of bytes to be filledThere is no return value