]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RL78_RL78G13_Promo_Board_IAR/RegTest.s87
89da14af7d89edef28d010910e4fa8dfa7cf57c4
[freertos] / FreeRTOS / Demo / RL78_RL78G13_Promo_Board_IAR / RegTest.s87
1 ;/*\r
2 ; * FreeRTOS Kernel V10.3.0\r
3 ; * Copyright (C) 2020 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.\r
14 ; *\r
15 ; * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
16 ; * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
17 ; * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
18 ; * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
19 ; * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
20 ; * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
21 ; *\r
22 ; * http://www.FreeRTOS.org\r
23 ; * http://aws.amazon.com/freertos\r
24 ; *\r
25 ; * 1 tab == 4 spaces!\r
26 ; */\r
27 \r
28 \r
29 ;\r
30 ; This file defines the RegTest tasks as described at the top of main.c\r
31 ;\r
32 \r
33 ;------------------------------------------------------------------------------\r
34 \r
35 #if __CORE__ != __RL78_1__\r
36         #error "This file is only for RL78 Devices"\r
37 #endif\r
38 \r
39 ; Functions implemented in this file\r
40 ;------------------------------------------------------------------------------\r
41 \r
42         PUBLIC    vRegTest1\r
43         PUBLIC    vRegTest2\r
44 \r
45 ; Functions used by this file\r
46 ;------------------------------------------------------------------------------\r
47         EXTERN    vRegTestError\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 vRegTest1:\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         BZ              +5\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         BZ              +5\r
98         BR              vRegTestError   \r
99         MOVW    AX, DE\r
100         CMPW    AX, #0x5566\r
101         BZ              +5\r
102         BR              vRegTestError   \r
103         MOVW    AX, HL  \r
104         CMPW    AX, #0x7788\r
105         BZ              +5\r
106         BR              vRegTestError\r
107         MOV             A, CS\r
108         CMP             A, #0x01\r
109         BZ              +5\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         BZ              +5\r
119         BR              vRegTestError\r
120 \r
121 #endif\r
122 \r
123         MOVW    AX, #0x1122\r
124         BR              loop1\r
125 \r
126 \r
127 ;------------------------------------------------------------------------------\r
128 ;   Fill all the registers with known values, then check that the registers\r
129 ;   contain the expected value.  An incorrect value being indicative of an\r
130 ;   error in the context switch mechanism.\r
131 ;\r
132 ;   Input:  NONE\r
133 ;\r
134 ;   Call:   Created as a task.\r
135 ;\r
136 ;   Output: NONE\r
137 ;\r
138 ;------------------------------------------------------------------------------\r
139     RSEG CODE:CODE\r
140 vRegTest2:\r
141 \r
142         MOVW    AX, #0x99aa\r
143         MOVW    BC, #0xbbcc\r
144         MOVW    DE, #0xddee\r
145         MOVW    HL, #0xff12\r
146         MOV             CS, #0x03\r
147 \r
148 #if __DATA_MODEL__ == __DATA_MODEL_FAR__\r
149 \r
150         MOV             ES, #0x04       \r
151 \r
152 #endif\r
153 \r
154 loop2:\r
155         CMPW    AX, #0x99aa\r
156         BZ              +5\r
157         BR              vRegTestError   \r
158         MOVW    AX, BC\r
159         CMPW    AX, #0xbbcc\r
160         BZ              +5\r
161         BR              vRegTestError   \r
162         MOVW    AX, DE\r
163         CMPW    AX, #0xddee\r
164         BZ              +5\r
165         BR              vRegTestError   \r
166         MOVW    AX, HL  \r
167         CMPW    AX, #0xff12\r
168         BZ              +5\r
169         BR              vRegTestError\r
170         MOV             A, CS\r
171         CMP             A, #0x03\r
172         BZ              +5\r
173         BR              vRegTestError\r
174 \r
175 #if __DATA_MODEL__ == __DATA_MODEL_FAR__\r
176 \r
177         MOV             A, ES\r
178         CMP             A, #0x04\r
179         BZ              +5\r
180         BR              vRegTestError\r
181 \r
182 #endif\r
183 \r
184         MOVW    AX, #0x99aa\r
185         BR              loop2\r
186 \r
187 \r
188         END\r