Share via


RESETVECTOR

This configuration option adds the jump to startup code at the specified address in the image. RESETVECTOR moves the jump page to the specified address but does not move the actual .bin file records.

RESETVECTOR = address 

Parameters

  • address
    The specified address in the image.

Remarks

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. This is required for MIPS, where the microprocessor starts executing after reset at 0x9FC00000, but the image is loaded starting at 0x9F80000. One page of this portion of memory should be reserved.

If RESETVECTOR is not defined, the jump page is at the start of the image. This is the default case.

See Also

CONFIG Section

 Last updated on Friday, October 08, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.