]> git.sur5r.net Git - freertos/commitdiff
Work in progress.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 12 Feb 2008 17:46:50 +0000 (17:46 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 12 Feb 2008 17:46:50 +0000 (17:46 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@169 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Source/portable/Softune/MB91460/port.c
Source/portable/Softune/MB91460/portmacro.h

index 4c1d425fc11712ecf8b062f622366e152b6513e0..969f3982606eb03cefd67e80ade6bd1f3912beca 100644 (file)
@@ -161,9 +161,10 @@ portSTACK_TYPE *pxPortInitialiseStack( portSTACK_TYPE *pxTopOfStack, pdTASK_CODE
        *pxTopOfStack = ( portSTACK_TYPE ) 0x00005555;  /* R5 */\r
        pxTopOfStack--;\r
        \r
-       /* In the current implemention of the compiler the first parameter to the task(or function) is passed\r
-       via R4 parameter to the task, hennce the pvParameters pointer is copied in R4 regsiter. See compiler \r
-       manual section 4.6.2 for more information.*/\r
+       /* In the current implemention of the compiler the first \r
+       parameter to the task(or function) is passed via R4 parameter \r
+       to the task, hennce the pvParameters pointer is copied in R4 \r
+       regsiter. See compiler manual section 4.6.2 for more information.*/\r
        *pxTopOfStack = ( portSTACK_TYPE ) (pvParameters);      /* R4 */\r
        pxTopOfStack--;\r
        *pxTopOfStack = ( portSTACK_TYPE ) 0x00003333;  /* R3 */\r
index cd8642332814f95b56dead2a31433ba77762556a..5b4ba313667098d3013716775613c4378abd320d 100644 (file)
@@ -43,6 +43,9 @@
 #ifndef PORTMACRO_H\r
 #define PORTMACRO_H\r
 \r
+#include "mb91467d.h"\r
+#include <stddef.h>\r
+\r
 /*-----------------------------------------------------------\r
  * Port specific definitions.  \r
  *\r
@@ -58,7 +61,7 @@
 #define portFLOAT              float\r
 #define portDOUBLE             double\r
 #define portLONG               long\r
-#define portSHORT              int\r
+#define portSHORT              short\r
 #define portSTACK_TYPE unsigned portLONG\r
 #define portBASE_TYPE  long\r
 \r