5.36 Public_equ Pragma

Use this pragma directive to define a public assembler label and give it a value.

Suggested Replacement

asm

Caveats

None.

Examples

Consider migrating IAR code such as:
#pragma public_equ="MY_SYMBOL",0x123456
to MPLAB XC codes similar to:
int foo asm ("my_symbol") = 2; 

Further Information

None.