RESETVECTOR (Compact 2013)
3/26/2014
This configuration option adds the jump-to-startup code at the specified address in the run-time image.
Syntax
RESETVECTOR = address
Parameters
- address
The specified address in the run-time image.
Remarks
RESETVECTOR moves the jump page to the specified address but does not move the actual .bin file records.
The RESERVE memory section must be used to prevent this region from being allocated, as in the following example:
MEMORY
NK 9f800000 00800000 RAMIMAGE
RESERVE 9fc00000 00001000
RAM 80080000 00780000 RAM
CONFIG
RESETVECTOR=9fc00000
RESETVECTOR=x places the jump page at the location in memory specified by x.
One page of this portion of memory should be reserved.
If RESETVECTOR is not defined, the jump page is at the start of the run-time image. This is the default.