7.7.8.117. GEL_VerifyBinProgram()ΒΆ
Verify target memory against specified raw binary file
Syntax
GEL_VerifyBinProgram( "file_name", [start_address], ["cpu_name"], ["board_name"] );
Parameters
file_name: the filename of the program file to verify target memory against. This could be in any format supported by the loader; see GEL_Load
start_address (optional): Address on the target at which the contents of the file are expected to start. Default is 0.
cpu_name (optional): names the CPU on which to load the file (useful in a multiprocessor environment). The cpuName must be enclosed in quotation marks.
board_name (optional): is the text string specified as the Board Name in the target configuration. The boardName must be enclosed in quotation marks.
Description
Verify target memory against specified raw binary file. This is the same as performing a full verification while loading the program. Verify skips the actual loading and only performs the verification against what is already in target memory.
If the file is not in the current directory, provide a full path name within the string. A double backslash escape sequence is required to ensure that you get a backslash into the fileName.
The cpu_name must match the CPU name as configured in the multiprocessor setup. In a single processor system, you do not need to fill this field.
Synchronous
Synchronous from GEL: No
Completely synchronous: No
Example
GEL_VerifyBinProgram("c:\\mydir\\myfile.bin", 0x8000, "cpu_a", "Emulator");
Related Topics