]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RL78_multiple_IAR/RegTest.s87
Update to MIT licensed FreeRTOS V10.0.0 - see https://www.freertos.org/History.txt
[freertos] / FreeRTOS / Demo / RL78_multiple_IAR / RegTest.s87
1 ;/*\r
2 ; * FreeRTOS Kernel V10.0.0\r
3 ; * Copyright (C) 2017 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
4 ; *\r
5 ; * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
6 ; * this software and associated documentation files (the "Software"), to deal in\r
7 ; * the Software without restriction, including without limitation the rights to\r
8 ; * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r
9 ; * the Software, and to permit persons to whom the Software is furnished to do so,\r
10 ; * subject to the following conditions:\r
11 ; *\r
12 ; * The above copyright notice and this permission notice shall be included in all\r
13 ; * copies or substantial portions of the Software. If you wish to use our Amazon\r
14 ; * FreeRTOS name, please do so in a fair use way that does not cause confusion.\r
15 ; *\r
16 ; * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
17 ; * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
18 ; * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
19 ; * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
20 ; * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
21 ; * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
22 ; *\r
23 ; * http://www.FreeRTOS.org\r
24 ; * http://aws.amazon.com/freertos\r
25 ; *\r
26 ; * 1 tab == 4 spaces!\r
27 ; */\r
28 \r
29 \r
30 ;\r
31 ; This file defines the RegTest tasks as described at the top of main.c\r
32 ;\r
33 \r
34 ;------------------------------------------------------------------------------\r
35 \r
36 \r
37 ; Functions implemented in this file\r
38 ;------------------------------------------------------------------------------\r
39 \r
40         PUBLIC    vRegTest1Task\r
41         PUBLIC    vRegTest2Task\r
42 \r
43 ; Functions and variables used by this file\r
44 ;------------------------------------------------------------------------------\r
45         EXTERN    vRegTestError\r
46         EXTERN    usRegTest1LoopCounter\r
47         EXTERN    usRegTest2LoopCounter\r
48 \r
49 ;------------------------------------------------------------------------------\r
50 ;   Fill all the registers with known values, then check that the registers\r
51 ;   contain the expected value.  An incorrect value being indicative of an\r
52 ;   error in the context switch mechanism.\r
53 ;\r
54 ;   Input:  NONE\r
55 ;\r
56 ;   Call:   Created as a task.\r
57 ;\r
58 ;   Output: NONE\r
59 ;\r
60 ;------------------------------------------------------------------------------\r
61     RSEG CODE:CODE\r
62 vRegTest1Task:\r
63 \r
64         ; First fill the registers.\r
65         MOVW    AX, #0x1122\r
66         MOVW    BC, #0x3344\r
67         MOVW    DE, #0x5566\r
68         MOVW    HL, #0x7788\r
69         MOV             CS, #0x01\r
70 \r
71 #if __DATA_MODEL__ == __DATA_MODEL_FAR__\r
72 \r
73         ; ES is not saved or restored when using the near memory model so only\r
74         ; test it when using the far model.\r
75         MOV             ES, #0x02\r
76 \r
77 #endif\r
78 \r
79 loop1:\r
80 \r
81         ; Continuously check that the register values remain at their expected\r
82         ; values.  The BRK is to test the yield.  This task runs at low priority\r
83         ; so will also regularly get preempted.\r
84         BRK\r
85 \r
86         ; Compare with the expected value.\r
87         CMPW    AX, #0x1122\r
88         SKZ\r
89 \r
90         ; Jump over the branch to vRegTestError() if the register contained the\r
91         ; expected value - otherwise flag an error by executing vRegTestError().\r
92         BR              vRegTestError\r
93 \r
94         ; Repeat for all the registers.\r
95         MOVW    AX, BC\r
96         CMPW    AX, #0x3344\r
97         SKZ\r
98         BR              vRegTestError\r
99         MOVW    AX, DE\r
100         CMPW    AX, #0x5566\r
101         SKZ\r
102         BR              vRegTestError\r
103         MOVW    AX, HL\r
104         CMPW    AX, #0x7788\r
105         SKZ\r
106         BR              vRegTestError\r
107         MOV             A, CS\r
108         CMP             A, #0x01\r
109         SKZ\r
110         BR              vRegTestError\r
111 \r
112 #if __DATA_MODEL__ == __DATA_MODEL_FAR__\r
113 \r
114         ; ES is not saved or restored when using the near memory model so only\r
115         ; test it when using the far model.\r
116         MOV             A, ES\r
117         CMP             A, #0x02\r
118         SKZ\r
119         BR              vRegTestError\r
120 \r
121 #endif\r
122 \r
123         ; Indicate that this task is still cycling.\r
124         INCW    usRegTest1LoopCounter\r
125 \r
126         MOVW    AX, #0x1122\r
127         BR              loop1\r
128 \r
129 \r
130 ;------------------------------------------------------------------------------\r
131 ;   Fill all the registers with known values, then check that the registers\r
132 ;   contain the expected value.  An incorrect value being indicative of an\r
133 ;   error in the context switch mechanism.\r
134 ;\r
135 ;   Input:  NONE\r
136 ;\r
137 ;   Call:   Created as a task.\r
138 ;\r
139 ;   Output: NONE\r
140 ;\r
141 ;------------------------------------------------------------------------------\r
142     RSEG CODE:CODE\r
143 vRegTest2Task:\r
144 \r
145         MOVW    AX, #0x99aa\r
146         MOVW    BC, #0xbbcc\r
147         MOVW    DE, #0xddee\r
148         MOVW    HL, #0xff12\r
149         MOV             CS, #0x03\r
150 \r
151 #if __DATA_MODEL__ == __DATA_MODEL_FAR__\r
152 \r
153         MOV             ES, #0x04\r
154 \r
155 #endif\r
156 \r
157 loop2:\r
158         CMPW    AX, #0x99aa\r
159         SKZ\r
160         BR              vRegTestError\r
161         MOVW    AX, BC\r
162         CMPW    AX, #0xbbcc\r
163         SKZ\r
164         BR              vRegTestError\r
165         MOVW    AX, DE\r
166         CMPW    AX, #0xddee\r
167         SKZ\r
168         BR              vRegTestError\r
169         MOVW    AX, HL\r
170         CMPW    AX, #0xff12\r
171         SKZ\r
172         BR              vRegTestError\r
173         MOV             A, CS\r
174         CMP             A, #0x03\r
175         SKZ\r
176         BR              vRegTestError\r
177 \r
178 #if __DATA_MODEL__ == __DATA_MODEL_FAR__\r
179 \r
180         MOV             A, ES\r
181         CMP             A, #0x04\r
182         SKZ\r
183         BR              vRegTestError\r
184 \r
185 #endif\r
186 \r
187         ; Indicate that this task is still cycling.\r
188         INCW    usRegTest2LoopCounter\r
189 \r
190         MOVW    AX, #0x99aa\r
191         BR              loop2\r
192 \r
193 \r
194         END\r