|
|
|
Description Retrieves an array with the target’s memory contents between two addresses. This is an asynchronous method that must be used in combination with an implementation of the OnDumpB event which is actually fired when the operation is completed. Syntax HCS121.DumpB (StartAddress, FinalAddress)
Remarks In order to access flash memory space larger than 64k bytes, you can use (additionally to using16 bit addresses between $8000 and $BFFF for StartAddress and FinalAddress together to PPAGE programming) linear addresses for StartAddress and FinalAddress. The activex component automatically looks after for PPAGE programming. For instance, if you target processor is one MC9S12DP256 and you want to retrieve the first 50 bytes of memory data from the flash block number 3, first page, you will have to write $30 into the PPAGE register and then access memory using the page window located between $8000 and $BFFF, setting the values $8000 and $8031 onto StartAddress and FinalAdrress respectively. The other way to do that would be setting the linear addresses $C0000 and $C0031 onto StartAddress and FinalAdrress respectively and leaving to HCS12 ActiveX the PPAGE programming task. See also: |
|