From f1c9c93cbf6d4ab6fed55d10daedd8a19373ed62 Mon Sep 17 00:00:00 2001 From: Rafal Babski Date: Thu, 25 Jun 2020 14:03:18 +0100 Subject: [PATCH] portable/GCC/MSPFR5969: fixed wrong asm instruction (mow.w -> mov.w) --- portable/GCC/MSP430FR5969/port.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portable/GCC/MSP430FR5969/port.c b/portable/GCC/MSP430FR5969/port.c index ed681c22f..50e7daffd 100644 --- a/portable/GCC/MSP430FR5969/port.c +++ b/portable/GCC/MSP430FR5969/port.c @@ -115,7 +115,7 @@ volatile uint16_t usCriticalNesting = portINITIAL_CRITICAL_NESTING; asm volatile ( "mov.w &pxCurrentTCB, r12 \n\t" \ "mov.w @r12, sp \n\t" \ "pop.w r15 \n\t" \ - "mow.w r15, &usCriticalNesting \n\t" \ + "mov.w r15, &usCriticalNesting \n\t" \ "popm.w #12, r15 \n\t" \ "nop \n\t" \ "pop.w sr \n\t" \