From 07af90a197964ff2aa3694498c573e0a41917381 Mon Sep 17 00:00:00 2001 From: richardbarry Date: Sun, 17 Feb 2008 18:08:09 +0000 Subject: [PATCH] Correct cut and paste asm code. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@197 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- Source/portable/Softune/MB91460/portmacro.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/portable/Softune/MB91460/portmacro.h b/Source/portable/Softune/MB91460/portmacro.h index 6bff7a5cf..4d6c293db 100644 --- a/Source/portable/Softune/MB91460/portmacro.h +++ b/Source/portable/Softune/MB91460/portmacro.h @@ -82,7 +82,7 @@ #error configKERNEL_INTERRUPT_PRIORITY (set in FreeRTOSConfig.h) must match the ILM value set in the following line - 30 (1Eh) being the default. #endif #define portDISABLE_INTERRUPTS() __asm(" STILM #1Eh ") -#define portENABLE_INTERRUPTS() __asm(" MOVL ILM, #1Fh ") +#define portENABLE_INTERRUPTS() __asm(" STILM #1Fh ") #define portENTER_CRITICAL() \ __asm(" ST PS,@-R15 "); \ -- 2.39.5