Memory_Get

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Core Language > BuiltIn Functions > Memory handling and pointers >

Memory_Get

 

Description

 

Return a sequence of bytes at a specified memory location.

 

Syntax

 

s = Memory_Get(SourceAddress, Size)

 

Returns

 

String

 

Parameters

 

Name

Type

Optional

Meaning

SourceAddress

Numeric

No

A valid 32-bit memory address specifying the location in memory where data retrieval should begin

Size

Numeric

No

A numeric expression that specifies the number of consecutive bytes to be read from memory starting at source address.

 

Remarks

 

Attention:it is programmer responsibility to be sure that at source address there are at least Size bytes already allocated otherwise application will crash with a GPF (General Protection Failure) runtime error will be fired by the operating system

 

Restrictions

 

See also

 

Examples