7.7.8.58. GEL_MemorySaveBin()ΒΆ

Saves a block of memory to a file in raw binary.

Syntax

GEL_MemorySaveBin( start_address, page, count, "file_path" );

Parameters

start_address: The first address in the block

page: Identifies the type of memory to save. On many targets, page zero is the only page. However, on some targets there are multiple pages identifying the different types of memory: 0 (Program memory), 1 (Data memory), or 2 (I/O space)

count: The number of words of memory to save.

file_path: Path to the file in which the data should be saved. The file_path must be enclosed in quotation marks.

Description

Save a block of target memory to a specified file in raw binary format.

Synchronous

Synchronous from GEL: Yes

Completely synchronous: No

Example

GEL_MemorySaveBin( 0x2400, 0, 100, "C:/path/to/file.bin" );

Related Topics

GEL_LoadBin

GEL_MemorySave

GEL_MemorySaveData

GEL_VerifyBinProgram