]> git.sur5r.net Git - freertos/blob - Demo/ColdFire_MCF5282_Eclipse/RTOSDemo/main.c
Prepare for FreeRTOS V7.1.1 tag.
[freertos] / Demo / ColdFire_MCF5282_Eclipse / RTOSDemo / main.c
1 /*\r
2     FreeRTOS V7.1.1 - Copyright (C) 2012 Real Time Engineers Ltd.\r
3         \r
4 \r
5     ***************************************************************************\r
6      *                                                                       *\r
7      *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
8      *    Complete, revised, and edited pdf reference manuals are also       *\r
9      *    available.                                                         *\r
10      *                                                                       *\r
11      *    Purchasing FreeRTOS documentation will not only help you, by       *\r
12      *    ensuring you get running as quickly as possible and with an        *\r
13      *    in-depth knowledge of how to use FreeRTOS, it will also help       *\r
14      *    the FreeRTOS project to continue with its mission of providing     *\r
15      *    professional grade, cross platform, de facto standard solutions    *\r
16      *    for microcontrollers - completely free of charge!                  *\r
17      *                                                                       *\r
18      *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
19      *                                                                       *\r
20      *    Thank you for using FreeRTOS, and thank you for your support!      *\r
21      *                                                                       *\r
22     ***************************************************************************\r
23 \r
24 \r
25     This file is part of the FreeRTOS distribution.\r
26 \r
27     FreeRTOS is free software; you can redistribute it and/or modify it under\r
28     the terms of the GNU General Public License (version 2) as published by the\r
29     Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
30     >>>NOTE<<< The modification to the GPL is included to allow you to\r
31     distribute a combined work that includes FreeRTOS without being obliged to\r
32     provide the source code for proprietary components outside of the FreeRTOS\r
33     kernel.  FreeRTOS is distributed in the hope that it will be useful, but\r
34     WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r
35     or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
36     more details. You should have received a copy of the GNU General Public\r
37     License and the FreeRTOS license exception along with FreeRTOS; if not it\r
38     can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
39     by writing to Richard Barry, contact details for whom are available on the\r
40     FreeRTOS WEB site.\r
41 \r
42     1 tab == 4 spaces!\r
43     \r
44     ***************************************************************************\r
45      *                                                                       *\r
46      *    Having a problem?  Start by reading the FAQ "My application does   *\r
47      *    not run, what could be wrong?                                      *\r
48      *                                                                       *\r
49      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
50      *                                                                       *\r
51     ***************************************************************************\r
52 \r
53     \r
54     http://www.FreeRTOS.org - Documentation, training, latest information, \r
55     license and contact details.\r
56     \r
57     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
58     including FreeRTOS+Trace - an indispensable productivity tool.\r
59 \r
60     Real Time Engineers ltd license FreeRTOS to High Integrity Systems, who sell \r
61     the code with commercial support, indemnification, and middleware, under \r
62     the OpenRTOS brand: http://www.OpenRTOS.com.  High Integrity Systems also\r
63     provide a safety engineered and independently SIL3 certified version under \r
64     the SafeRTOS brand: http://www.SafeRTOS.com.\r
65 */\r
66 \r
67 \r
68 /*\r
69  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
70  * documentation provides more details of the standard demo application tasks.\r
71  * In addition to the standard demo tasks, the following tasks and tests are\r
72  * defined and/or created within this file:\r
73  *\r
74  * "Check" task -  This only executes every five seconds but has a high priority\r
75  * to ensure it gets processor time.  Its main function is to check that all the\r
76  * standard demo tasks are still operational.  While no errors have been\r
77  * discovered the check task will toggle an LED every 5 seconds - the toggle\r
78  * rate increasing to 500ms being a visual indication that at least one task has\r
79  * reported unexpected behaviour.\r
80  *\r
81  * "Reg test" tasks - These fill the registers with known values, then check\r
82  * that each register still contains its expected value.  Each task uses\r
83  * different values.  The tasks run with very low priority so get preempted very\r
84  * frequently.  A register containing an unexpected value is indicative of an\r
85  * error in the context switching mechanism.\r
86  *\r
87  */\r
88 \r
89 /* Standard includes. */\r
90 #include <stdio.h>\r
91 \r
92 /* Scheduler includes. */\r
93 #include "FreeRTOS.h"\r
94 #include "task.h"\r
95 #include "queue.h"\r
96 #include "semphr.h"\r
97 \r
98 /* Demo app includes. */\r
99 #include "BlockQ.h"\r
100 #include "death.h"\r
101 #include "integer.h"\r
102 #include "flash.h"\r
103 #include "partest.h"\r
104 #include "semtest.h"\r
105 #include "PollQ.h"\r
106 #include "GenQTest.h"\r
107 #include "QPeek.h"\r
108 #include "recmutex.h"\r
109 #include "IntQueue.h"\r
110 #include "comtest2.h"\r
111 \r
112 /*-----------------------------------------------------------*/\r
113 \r
114 /* The time between cycles of the 'check' functionality - as described at the\r
115 top of this file. */\r
116 #define mainNO_ERROR_PERIOD                                     ( ( portTickType ) 5000 / portTICK_RATE_MS )\r
117 \r
118 /* The rate at which the LED controlled by the 'check' task will flash should an\r
119 error have been detected. */\r
120 #define mainERROR_PERIOD                                        ( ( portTickType ) 500 / portTICK_RATE_MS )\r
121 \r
122 /* The LED controlled by the 'check' task. */\r
123 #define mainCHECK_LED                                           ( 3 )\r
124 \r
125 /* ComTest constants - there is no free LED for the comtest tasks. */\r
126 #define mainCOM_TEST_BAUD_RATE                          ( ( unsigned portLONG ) 19200 )\r
127 #define mainCOM_TEST_LED                                        ( 5 )\r
128 \r
129 /* Task priorities. */\r
130 #define mainCOM_TEST_PRIORITY                           ( tskIDLE_PRIORITY + 2 )\r
131 #define mainQUEUE_POLL_PRIORITY                         ( tskIDLE_PRIORITY + 2 )\r
132 #define mainCHECK_TASK_PRIORITY                         ( tskIDLE_PRIORITY + 3 )\r
133 #define mainSEM_TEST_PRIORITY                           ( tskIDLE_PRIORITY + 1 )\r
134 #define mainBLOCK_Q_PRIORITY                            ( tskIDLE_PRIORITY + 2 )\r
135 #define mainCREATOR_TASK_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
136 #define mainINTEGER_TASK_PRIORITY           ( tskIDLE_PRIORITY )\r
137 #define mainGEN_QUEUE_TASK_PRIORITY                     ( tskIDLE_PRIORITY )\r
138 \r
139 /*\r
140  * Configure the hardware for the demo.\r
141  */\r
142 static void prvSetupHardware( void );\r
143 \r
144 /*\r
145  * Implements the 'check' task functionality as described at the top of this\r
146  * file.\r
147  */\r
148 static void prvCheckTask( void *pvParameters );\r
149 \r
150 /*\r
151  * Implement the 'Reg test' functionality as described at the top of this file.\r
152  */\r
153 static void vRegTest1Task( void *pvParameters );\r
154 static void vRegTest2Task( void *pvParameters );\r
155 \r
156 /*-----------------------------------------------------------*/\r
157 \r
158 /* Counters used to detect errors within the reg test tasks. */\r
159 static volatile unsigned portLONG ulRegTest1Counter = 0x11111111, ulRegTest2Counter = 0x22222222;\r
160 \r
161 /*-----------------------------------------------------------*/\r
162 \r
163 int main( void )\r
164 {\r
165         /* Setup the hardware ready for this demo. */\r
166         prvSetupHardware();\r
167 \r
168         /* Start the standard demo tasks. */\r
169         vStartLEDFlashTasks( tskIDLE_PRIORITY );\r
170         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
171         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
172         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
173         vStartIntegerMathTasks( mainINTEGER_TASK_PRIORITY );\r
174         vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );\r
175         vStartQueuePeekTasks();\r
176         vStartRecursiveMutexTasks();\r
177         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
178         vStartInterruptQueueTasks();\r
179 \r
180         /* Start the reg test tasks - defined in this file. */\r
181         xTaskCreate( vRegTest1Task, ( signed portCHAR * ) "Reg1", configMINIMAL_STACK_SIZE, ( void * ) &ulRegTest1Counter, tskIDLE_PRIORITY, NULL );\r
182         xTaskCreate( vRegTest2Task, ( signed portCHAR * ) "Reg2", configMINIMAL_STACK_SIZE, ( void * ) &ulRegTest2Counter, tskIDLE_PRIORITY, NULL );\r
183 \r
184         /* Create the check task. */\r
185         xTaskCreate( prvCheckTask, ( signed portCHAR * ) "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
186 \r
187         /* The suicide tasks must be created last as they need to know how many\r
188         tasks were running prior to their creation in order to ascertain whether\r
189         or not the correct/expected number of tasks are running at any given time. */\r
190     vCreateSuicidalTasks( mainCREATOR_TASK_PRIORITY );\r
191 \r
192         /* Start the scheduler. */\r
193         vTaskStartScheduler();\r
194 \r
195     /* Will only get here if there was insufficient memory to create the idle\r
196     task. */\r
197         for( ;; );\r
198 }\r
199 /*-----------------------------------------------------------*/\r
200 \r
201 static void prvCheckTask( void *pvParameters )\r
202 {\r
203 unsigned ulTicksToWait = mainNO_ERROR_PERIOD, ulError = 0, ulLastRegTest1Count = 0, ulLastRegTest2Count = 0;\r
204 portTickType xLastExecutionTime;\r
205 \r
206         ( void ) pvParameters;\r
207 \r
208         /* Initialise the variable used to control our iteration rate prior to\r
209         its first use. */\r
210         xLastExecutionTime = xTaskGetTickCount();\r
211 \r
212         for( ;; )\r
213         {\r
214                 /* Wait until it is time to run the tests again. */\r
215                 vTaskDelayUntil( &xLastExecutionTime, ulTicksToWait );\r
216 \r
217                 /* Has an error been found in any task? */\r
218                 if( xAreGenericQueueTasksStillRunning() != pdTRUE )\r
219                 {\r
220                         ulError |= 0x01UL;\r
221                 }\r
222 \r
223                 if( xAreQueuePeekTasksStillRunning() != pdTRUE )\r
224                 {\r
225                         ulError |= 0x02UL;\r
226                 }\r
227 \r
228                 if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
229                 {\r
230                         ulError |= 0x04UL;\r
231                 }\r
232 \r
233                 if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
234             {\r
235                 ulError |= 0x20UL;\r
236             }\r
237 \r
238                 if( xArePollingQueuesStillRunning() != pdTRUE )\r
239             {\r
240                 ulError |= 0x40UL;\r
241             }\r
242 \r
243                 if( xIsCreateTaskStillRunning() != pdTRUE )\r
244             {\r
245                 ulError |= 0x80UL;\r
246             }\r
247 \r
248                 if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
249             {\r
250                 ulError |= 0x100UL;\r
251             }\r
252 \r
253                 if( xAreRecursiveMutexTasksStillRunning() != pdTRUE )\r
254             {\r
255                 ulError |= 0x200UL;\r
256             }\r
257 \r
258                 if( xAreComTestTasksStillRunning() != pdTRUE )\r
259                 {\r
260                 ulError |= 0x400UL;\r
261                 }\r
262 \r
263                 if( xAreIntQueueTasksStillRunning() != pdTRUE )\r
264             {\r
265                 ulError |= 0x800UL;\r
266             }\r
267 \r
268                 if( ulLastRegTest1Count == ulRegTest1Counter )\r
269                 {\r
270                         ulError |= 0x1000UL;\r
271                 }\r
272 \r
273                 if( ulLastRegTest2Count == ulRegTest2Counter )\r
274                 {\r
275                         ulError |= 0x1000UL;\r
276                 }\r
277 \r
278                 ulLastRegTest1Count = ulRegTest1Counter;\r
279                 ulLastRegTest2Count = ulRegTest2Counter;\r
280 \r
281                 /* If an error has been found then increase our cycle rate, and in so\r
282                 going increase the rate at which the check task LED toggles. */\r
283                 if( ulError != 0 )\r
284                 {\r
285                 ulTicksToWait = mainERROR_PERIOD;\r
286                 }\r
287 \r
288                 /* Toggle the LED each itteration. */\r
289                 vParTestToggleLED( mainCHECK_LED );\r
290         }\r
291 }\r
292 /*-----------------------------------------------------------*/\r
293 \r
294 void prvSetupHardware( void )\r
295 {\r
296 extern void mcf5xxx_wr_cacr( unsigned portLONG );\r
297 \r
298         portDISABLE_INTERRUPTS();\r
299 \r
300         /* Enable the cache. */\r
301         mcf5xxx_wr_cacr( MCF5XXX_CACR_CENB | MCF5XXX_CACR_CINV | MCF5XXX_CACR_DISD | MCF5XXX_CACR_CEIB | MCF5XXX_CACR_CLNF_00 );\r
302         asm volatile( "NOP" ); /* As per errata. */\r
303 \r
304         /* Multiply 8Mhz reference crystal by 8 to achieve system clock of 64Mhz. */\r
305         MCF_CLOCK_SYNCR = MCF_CLOCK_SYNCR_MFD( 2 );\r
306 \r
307         /* Wait for PLL to lock. */\r
308         while( !( MCF_CLOCK_SYNSR & MCF_CLOCK_SYNSR_LOCK ) )\r
309         {\r
310                 __asm__ volatile ( "NOP" );\r
311         }\r
312 \r
313         /* Setup the port used to toggle LEDs. */\r
314         vParTestInitialise();\r
315 }\r
316 /*-----------------------------------------------------------*/\r
317 \r
318 void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed portCHAR *pcTaskName )\r
319 {\r
320         /* This will get called if a stack overflow is detected during the context\r
321         switch.  Set configCHECK_FOR_STACK_OVERFLOWS to 2 to also check for stack\r
322         problems within nested interrupts, but only do this for debug purposes as\r
323         it will increase the context switch time. */\r
324 \r
325         ( void ) pxTask;\r
326         ( void ) pcTaskName;\r
327 \r
328         for( ;; );\r
329 }\r
330 /*-----------------------------------------------------------*/\r
331 \r
332 static void vRegTest1Task( void *pvParameters )\r
333 {\r
334         /* Sanity check - did we receive the parameter expected? */\r
335         if( pvParameters != &ulRegTest1Counter )\r
336         {\r
337                 /* Change here so the check task can detect that an error occurred. */\r
338                 for( ;; );\r
339         }\r
340 \r
341         /* Set all the registers to known values, then check that each retains its\r
342         expected value - as described at the top of this file.  If an error is\r
343         found then the loop counter will no longer be incremented allowing the check\r
344         task to recognise the error. */\r
345         asm volatile    (       "reg_test_1_start:                                              \n\t"\r
346                                                 "       moveq           #1, %d0                                 \n\t"\r
347                                                 "       moveq           #2, %d1                                 \n\t"\r
348                                                 "       moveq           #3, %d2                                 \n\t"\r
349                                                 "       moveq           #4, %d3                                 \n\t"\r
350                                                 "       moveq           #5, %d4                                 \n\t"\r
351                                                 "       moveq           #6, %d5                                 \n\t"\r
352                                                 "       moveq           #7, %d6                                 \n\t"\r
353                                                 "       moveq           #8, %d7                                 \n\t"\r
354                                                 "       move            #9, %a0                                 \n\t"\r
355                                                 "       move            #10, %a1                                \n\t"\r
356                                                 "       move            #11, %a2                                \n\t"\r
357                                                 "       move            #12, %a3                                \n\t"\r
358                                                 "       move            #13, %a4                                \n\t"\r
359                                                 "       move            #14, %a5                                \n\t"\r
360                                                 "       move            #15, %a6                                \n\t"\r
361                                                 "                                                                               \n\t"\r
362                                                 "       cmpi.l          #1, %d0                                 \n\t"\r
363                                                 "       bne                     reg_test_1_error                \n\t"\r
364                                                 "       cmpi.l          #2, %d1                                 \n\t"\r
365                                                 "       bne                     reg_test_1_error                \n\t"\r
366                                                 "       cmpi.l          #3, %d2                                 \n\t"\r
367                                                 "       bne                     reg_test_1_error                \n\t"\r
368                                                 "       cmpi.l          #4, %d3                                 \n\t"\r
369                                                 "       bne                     reg_test_1_error                \n\t"\r
370                                                 "       cmpi.l          #5, %d4                                 \n\t"\r
371                                                 "       bne                     reg_test_1_error                \n\t"\r
372                                                 "       cmpi.l          #6, %d5                                 \n\t"\r
373                                                 "       bne                     reg_test_1_error                \n\t"\r
374                                                 "       cmpi.l          #7, %d6                                 \n\t"\r
375                                                 "       bne                     reg_test_1_error                \n\t"\r
376                                                 "       cmpi.l          #8, %d7                                 \n\t"\r
377                                                 "       bne                     reg_test_1_error                \n\t"\r
378                                                 "       move            %a0, %d0                                \n\t"\r
379                                                 "       cmpi.l          #9, %d0                                 \n\t"\r
380                                                 "       bne                     reg_test_1_error                \n\t"\r
381                                                 "       move            %a1, %d0                                \n\t"\r
382                                                 "       cmpi.l          #10, %d0                                \n\t"\r
383                                                 "       bne                     reg_test_1_error                \n\t"\r
384                                                 "       move            %a2, %d0                                \n\t"\r
385                                                 "       cmpi.l          #11, %d0                                \n\t"\r
386                                                 "       bne                     reg_test_1_error                \n\t"\r
387                                                 "       move            %a3, %d0                                \n\t"\r
388                                                 "       cmpi.l          #12, %d0                                \n\t"\r
389                                                 "       bne                     reg_test_1_error                \n\t"\r
390                                                 "       move            %a4, %d0                                \n\t"\r
391                                                 "       cmpi.l          #13, %d0                                \n\t"\r
392                                                 "       bne                     reg_test_1_error                \n\t"\r
393                                                 "       move            %a5, %d0                                \n\t"\r
394                                                 "       cmpi.l          #14, %d0                                \n\t"\r
395                                                 "       bne                     reg_test_1_error                \n\t"\r
396                                                 "       move            %a6, %d0                                \n\t"\r
397                                                 "       cmpi.l          #15, %d0                                \n\t"\r
398                                                 "       bne                     reg_test_1_error                \n\t"\r
399                                                 "       movel           ulRegTest1Counter, %d0  \n\t"\r
400                                                 "       addql           #1, %d0                                 \n\t"\r
401                                                 "       movel           %d0, ulRegTest1Counter  \n\t"\r
402                                                 "       bra                     reg_test_1_start                \n\t"\r
403                                                 "reg_test_1_error:                                              \n\t"\r
404                                                 "       bra                     reg_test_1_error                \n\t"\r
405                                         );\r
406 }\r
407 /*-----------------------------------------------------------*/\r
408 \r
409 static void vRegTest2Task( void *pvParameters )\r
410 {\r
411         /* Sanity check - did we receive the parameter expected? */\r
412         if( pvParameters != &ulRegTest2Counter )\r
413         {\r
414                 /* Change here so the check task can detect that an error occurred. */\r
415                 for( ;; );\r
416         }\r
417 \r
418         /* Set all the registers to known values, then check that each retains its\r
419         expected value - as described at the top of this file.  If an error is\r
420         found then the loop counter will no longer be incremented allowing the check\r
421         task to recognise the error. */\r
422         asm volatile    (       "reg_test_2_start:                                              \n\t"\r
423                                                 "       moveq           #10, %d0                                \n\t"\r
424                                                 "       moveq           #20, %d1                                \n\t"\r
425                                                 "       moveq           #30, %d2                                \n\t"\r
426                                                 "       moveq           #40, %d3                                \n\t"\r
427                                                 "       moveq           #50, %d4                                \n\t"\r
428                                                 "       moveq           #60, %d5                                \n\t"\r
429                                                 "       moveq           #70, %d6                                \n\t"\r
430                                                 "       moveq           #80, %d7                                \n\t"\r
431                                                 "       move            #90, %a0                                \n\t"\r
432                                                 "       move            #100, %a1                               \n\t"\r
433                                                 "       move            #110, %a2                               \n\t"\r
434                                                 "       move            #120, %a3                               \n\t"\r
435                                                 "       move            #130, %a4                               \n\t"\r
436                                                 "       move            #140, %a5                               \n\t"\r
437                                                 "       move            #150, %a6                               \n\t"\r
438                                                 "                                                                               \n\t"\r
439                                                 "       cmpi.l          #10, %d0                                \n\t"\r
440                                                 "       bne                     reg_test_2_error                \n\t"\r
441                                                 "       cmpi.l          #20, %d1                                \n\t"\r
442                                                 "       bne                     reg_test_2_error                \n\t"\r
443                                                 "       cmpi.l          #30, %d2                                \n\t"\r
444                                                 "       bne                     reg_test_2_error                \n\t"\r
445                                                 "       cmpi.l          #40, %d3                                \n\t"\r
446                                                 "       bne                     reg_test_2_error                \n\t"\r
447                                                 "       cmpi.l          #50, %d4                                \n\t"\r
448                                                 "       bne                     reg_test_2_error                \n\t"\r
449                                                 "       cmpi.l          #60, %d5                                \n\t"\r
450                                                 "       bne                     reg_test_2_error                \n\t"\r
451                                                 "       cmpi.l          #70, %d6                                \n\t"\r
452                                                 "       bne                     reg_test_2_error                \n\t"\r
453                                                 "       cmpi.l          #80, %d7                                \n\t"\r
454                                                 "       bne                     reg_test_2_error                \n\t"\r
455                                                 "       move            %a0, %d0                                \n\t"\r
456                                                 "       cmpi.l          #90, %d0                                \n\t"\r
457                                                 "       bne                     reg_test_2_error                \n\t"\r
458                                                 "       move            %a1, %d0                                \n\t"\r
459                                                 "       cmpi.l          #100, %d0                               \n\t"\r
460                                                 "       bne                     reg_test_2_error                \n\t"\r
461                                                 "       move            %a2, %d0                                \n\t"\r
462                                                 "       cmpi.l          #110, %d0                               \n\t"\r
463                                                 "       bne                     reg_test_2_error                \n\t"\r
464                                                 "       move            %a3, %d0                                \n\t"\r
465                                                 "       cmpi.l          #120, %d0                               \n\t"\r
466                                                 "       bne                     reg_test_2_error                \n\t"\r
467                                                 "       move            %a4, %d0                                \n\t"\r
468                                                 "       cmpi.l          #130, %d0                               \n\t"\r
469                                                 "       bne                     reg_test_2_error                \n\t"\r
470                                                 "       move            %a5, %d0                                \n\t"\r
471                                                 "       cmpi.l          #140, %d0                               \n\t"\r
472                                                 "       bne                     reg_test_2_error                \n\t"\r
473                                                 "       move            %a6, %d0                                \n\t"\r
474                                                 "       cmpi.l          #150, %d0                               \n\t"\r
475                                                 "       bne                     reg_test_2_error                \n\t"\r
476                                                 "       movel           ulRegTest1Counter, %d0  \n\t"\r
477                                                 "       addql           #1, %d0                                 \n\t"\r
478                                                 "       movel           %d0, ulRegTest2Counter  \n\t"\r
479                                                 "       bra                     reg_test_2_start                \n\t"\r
480                                                 "reg_test_2_error:                                              \n\t"\r
481                                                 "       bra                     reg_test_2_error                \n\t"\r
482                                         );\r
483 }\r
484 /*-----------------------------------------------------------*/\r
485 \r