7.7.8.59. GEL_MemorySaveCoff()ΒΆ

Saves one or more blocks of memory to a file in COFF format.

Syntax

GEL_MemorySaveCoff( "file_path", page, start_address1, count1, [start_address2], [count2], ... );

Parameters

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

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)

start_addressN: The start address of the N-th block of memory.

countN: The number of words in the N-th block of memory.

Description

Save one or more blocks of memory to a specified file in COFF format.

Synchronous

Synchronous from GEL: Yes

Completely synchronous: No

Example

GEL_MemorySaveCoff( "C:/path/to/file.out", 0, 0x2400, 100, 0x3000, 0x40 );

Related Topics

GEL_Load

GEL_MemorySave

GEL_MemorySaveBin

GEL_MemorySaveData

GEL_VerifyProgram