#pragma vectorseg("name" | default)
The vectorseg pragma sets the name of the section that the compiler emits interrupt vector tables into. If the argument to the vectorseg pragma is a string, a section of that name is created and the compiler emits all interrupt vector tables into that section. If the argument to vectorseg is the reserved word default, the compiler selects the default interrupt vector section name.
The default interrupt vector section name, if no other directives have been given, is INTVEC. You can change the default interrupt vector section name for the whole compilation unit by using the -Rv command line option or by setting the Vector Section Name property of the file or project in the CrossStudio development environment.