core
In this section:
Syntax
#pragma core=nParameters
| The ordinal number of one of the cores of your microcontroller (1–7). |
Description
By default, all cores in a multicore system use the same interrupt vector table. If one or more cores need to specify their own specific interrupt functions, you must use #pragma core to identify the core.
Example
#pragma core=2
#pragma vector=INTDMA0_vector
__interrupt void dma( void )
{
}