Skip to main content

IAR Embedded Workbench for RH850 3.20.x

core

In this section:
Syntax
#pragma core=n
Parameters

n

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 )
{
}