mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
Update PIC32 asm code ready for MPLAB compiler V2.
This commit is contained in:
parent
fe6284e807
commit
87b97f5510
|
@ -70,7 +70,11 @@
|
|||
|
||||
/******************************************************************/
|
||||
|
||||
.section .FreeRTOS, "ax", @progbits
|
||||
#if (__C32_VERSION__ >= 2 )
|
||||
.section .FreeRTOS, code
|
||||
#else
|
||||
.section .FreeRTOS, "ax", @progbits
|
||||
#endif
|
||||
.set noreorder
|
||||
.set noat
|
||||
.ent vT3InterruptWrapper
|
||||
|
@ -88,7 +92,11 @@ vT3InterruptWrapper:
|
|||
|
||||
/******************************************************************/
|
||||
|
||||
.section .FreeRTOS, "ax", @progbits
|
||||
#if (__C32_VERSION__ >= 2 )
|
||||
.section .FreeRTOS, code
|
||||
#else
|
||||
.section .FreeRTOS, "ax", @progbits
|
||||
#endif
|
||||
.set noreorder
|
||||
.set noat
|
||||
.ent vT4InterruptWrapper
|
||||
|
|
|
@ -63,7 +63,11 @@
|
|||
.global vRegTest2
|
||||
|
||||
|
||||
/* .section .FreeRTOS, ax, @progbits */
|
||||
#if (__C32_VERSION__ >= 2 )
|
||||
.section .FreeRTOS, code
|
||||
#else
|
||||
.section .FreeRTOS, "ax", @progbits
|
||||
#endif
|
||||
.set noreorder
|
||||
.set noat
|
||||
.ent vRegTest1
|
||||
|
@ -203,7 +207,11 @@ vRegTest1:
|
|||
.end vRegTest1
|
||||
|
||||
|
||||
/* .section .FreeRTOS, ax, @progbits */
|
||||
#if (__C32_VERSION__ >= 2 )
|
||||
.section .FreeRTOS, code
|
||||
#else
|
||||
.section .FreeRTOS, "ax", @progbits
|
||||
#endif
|
||||
.set noreorder
|
||||
.set noat
|
||||
.ent vRegTest2
|
||||
|
|
Loading…
Reference in a new issue