memset

Description

Fill RAM with an 8 bit value

Definition

memset(char *dst, char val, char len)

Library

LIB/str_lib.bas

Usage

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 buffer
cnt is the number of bytes to be filled
On exit:
There is no return value