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