A special section exists for the definition of the interrupt vector table of the 68HC11 or 68HC12. The vectors must be in a section named .vectors.

In assembly, use:

.sect .vectors  

With gcc, use:

__attribute__ ((section (".vectors")))