From: richardbarry Date: Tue, 21 Sep 2010 21:11:42 +0000 (+0000) Subject: Formatting only. X-Git-Tag: V6.1.0~19 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fc20814eda2195782d34c7f0f33ba22b6780c741;p=freertos Formatting only. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1116 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Source/portable/GCC/RX600/port.c b/Source/portable/GCC/RX600/port.c index a41ade7c9..ca9549309 100644 --- a/Source/portable/GCC/RX600/port.c +++ b/Source/portable/GCC/RX600/port.c @@ -215,36 +215,36 @@ static void prvStartFirstTask( void ) /* When starting the scheduler there is nothing that needs moving to the interrupt stack because the function is not called from an interrupt. Just ensure the current stack is the user stack. */ - "SETPSW U \n" \ + "SETPSW U \n" \ /* Obtain the location of the stack associated with which ever task pxCurrentTCB is currently pointing to. */ - "MOV.L #_pxCurrentTCB, R15 \n" \ - "MOV.L [R15], R15 \n" \ - "MOV.L [R15], R0 \n" \ + "MOV.L #_pxCurrentTCB, R15 \n" \ + "MOV.L [R15], R15 \n" \ + "MOV.L [R15], R0 \n" \ /* Restore the registers from the stack of the task pointed to by pxCurrentTCB. */ - "POP R15 \n" \ + "POP R15 \n" \ /* Accumulator low 32 bits. */ - "MVTACLO R15 \n" \ - "POP R15 \n" \ + "MVTACLO R15 \n" \ + "POP R15 \n" \ /* Accumulator high 32 bits. */ - "MVTACHI R15 \n" \ - "POP R15 \n" \ + "MVTACHI R15 \n" \ + "POP R15 \n" \ /* Floating point status word. */ - "MVTC R15, FPSW \n" \ + "MVTC R15, FPSW \n" \ /* R1 to R15 - R0 is not included as it is the SP. */ - "POPM R1-R15 \n" \ + "POPM R1-R15 \n" \ /* This pops the remaining registers. */ - "RTE \n" \ - "NOP \n" \ - "NOP \n" + "RTE \n" \ + "NOP \n" \ + "NOP \n" ); } /*-----------------------------------------------------------*/