diff options
Diffstat (limited to 'lib/chibios/os/common/ports/e200/compilers/GCC')
4 files changed, 486 insertions, 0 deletions
diff --git a/lib/chibios/os/common/ports/e200/compilers/GCC/chcoreasm.S b/lib/chibios/os/common/ports/e200/compilers/GCC/chcoreasm.S new file mode 100644 index 000000000..008c09785 --- /dev/null +++ b/lib/chibios/os/common/ports/e200/compilers/GCC/chcoreasm.S | |||
@@ -0,0 +1,113 @@ | |||
1 | /* | ||
2 | ChibiOS - Copyright (C) 2006,2007,2008,2009,2010,2011,2012,2013,2014, | ||
3 | 2015,2016,2017,2018,2019,2020,2021 Giovanni Di Sirio. | ||
4 | |||
5 | This file is part of ChibiOS. | ||
6 | |||
7 | ChibiOS is free software; you can redistribute it and/or modify | ||
8 | it under the terms of the GNU General Public License as published by | ||
9 | the Free Software Foundation version 3 of the License. | ||
10 | |||
11 | ChibiOS is distributed in the hope that it will be useful, | ||
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | GNU General Public License for more details. | ||
15 | |||
16 | You should have received a copy of the GNU General Public License | ||
17 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
18 | */ | ||
19 | |||
20 | /** | ||
21 | * @file e200/compilers/GCC/chcoreasm.S | ||
22 | * @brief Power Architecture port low level code. | ||
23 | * | ||
24 | * @addtogroup PPC_GCC_CORE | ||
25 | * @{ | ||
26 | */ | ||
27 | |||
28 | /*===========================================================================*/ | ||
29 | /* Module constants. */ | ||
30 | /*===========================================================================*/ | ||
31 | |||
32 | #if !defined(FALSE) || defined(__DOXYGEN__) | ||
33 | #define FALSE 0 | ||
34 | #endif | ||
35 | |||
36 | #if !defined(TRUE) || defined(__DOXYGEN__) | ||
37 | #define TRUE 1 | ||
38 | #endif | ||
39 | |||
40 | /*===========================================================================*/ | ||
41 | /* Code section. */ | ||
42 | /*===========================================================================*/ | ||
43 | |||
44 | #define _FROM_ASM_ | ||
45 | #include "chlicense.h" | ||
46 | #include "chconf.h" | ||
47 | #include "chcore.h" | ||
48 | |||
49 | #if defined(__HIGHTEC__) | ||
50 | #define e_subi subi | ||
51 | #endif | ||
52 | |||
53 | #if !defined(__DOXYGEN__) | ||
54 | |||
55 | /* | ||
56 | * RTOS-specific context offset. | ||
57 | */ | ||
58 | #if defined(_CHIBIOS_RT_CONF_) | ||
59 | #define CONTEXT_OFFSET 12 | ||
60 | #elif defined(_CHIBIOS_NIL_CONF_) | ||
61 | #define CONTEXT_OFFSET 0 | ||
62 | #else | ||
63 | #error "invalid chconf.h" | ||
64 | #endif | ||
65 | |||
66 | #if PPC_USE_VLE == TRUE | ||
67 | .section .text_vle, "ax" | ||
68 | #else | ||
69 | .section .text, "ax" | ||
70 | #endif | ||
71 | |||
72 | .align 2 | ||
73 | .globl _port_switch | ||
74 | .type _port_switch, @function | ||
75 | _port_switch: | ||
76 | e_subi sp, sp, 80 | ||
77 | mflr r0 | ||
78 | e_stw r0, 84(sp) | ||
79 | mfcr r0 | ||
80 | se_stw r0, 0(sp) | ||
81 | e_stmw r14, 4(sp) | ||
82 | |||
83 | se_stw sp, CONTEXT_OFFSET(r4) | ||
84 | se_lwz sp, CONTEXT_OFFSET(r3) | ||
85 | |||
86 | e_lmw r14, 4(sp) | ||
87 | se_lwz r0, 0(sp) | ||
88 | mtcr r0 | ||
89 | e_lwz r0, 84(sp) | ||
90 | mtlr r0 | ||
91 | e_addi sp, sp, 80 | ||
92 | se_blr | ||
93 | |||
94 | .align 2 | ||
95 | .globl _port_thread_start | ||
96 | .type _port_thread_start, @function | ||
97 | _port_thread_start: | ||
98 | #if CH_DBG_SYSTEM_STATE_CHECK | ||
99 | e_bl _dbg_check_unlock | ||
100 | #endif | ||
101 | #if CH_DBG_STATISTICS | ||
102 | e_bl _stats_stop_measure_crit_thd | ||
103 | #endif | ||
104 | wrteei 1 | ||
105 | mr r3, r31 | ||
106 | mtctr r30 | ||
107 | se_bctrl | ||
108 | e_li r0, 0 | ||
109 | e_bl chThdExit | ||
110 | |||
111 | #endif /* !defined(__DOXYGEN__) */ | ||
112 | |||
113 | /** @} */ | ||
diff --git a/lib/chibios/os/common/ports/e200/compilers/GCC/chtypes.h b/lib/chibios/os/common/ports/e200/compilers/GCC/chtypes.h new file mode 100644 index 000000000..d0f3d08c3 --- /dev/null +++ b/lib/chibios/os/common/ports/e200/compilers/GCC/chtypes.h | |||
@@ -0,0 +1,97 @@ | |||
1 | /* | ||
2 | ChibiOS - Copyright (C) 2006,2007,2008,2009,2010,2011,2012,2013,2014, | ||
3 | 2015,2016,2017,2018,2019,2020,2021 Giovanni Di Sirio. | ||
4 | |||
5 | This file is part of ChibiOS. | ||
6 | |||
7 | ChibiOS is free software; you can redistribute it and/or modify | ||
8 | it under the terms of the GNU General Public License as published by | ||
9 | the Free Software Foundation version 3 of the License. | ||
10 | |||
11 | ChibiOS is distributed in the hope that it will be useful, | ||
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | GNU General Public License for more details. | ||
15 | |||
16 | You should have received a copy of the GNU General Public License | ||
17 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
18 | */ | ||
19 | |||
20 | /** | ||
21 | * @file e200/compilers/GCC/chtypes.h | ||
22 | * @brief Power e200 port system types. | ||
23 | * | ||
24 | * @addtogroup PPC_GCC_CORE | ||
25 | * @{ | ||
26 | */ | ||
27 | |||
28 | #ifndef CHTYPES_H | ||
29 | #define CHTYPES_H | ||
30 | |||
31 | #include <stddef.h> | ||
32 | #include <stdint.h> | ||
33 | #include <stdbool.h> | ||
34 | |||
35 | /** | ||
36 | * @name Kernel types | ||
37 | * @{ | ||
38 | */ | ||
39 | typedef uint32_t rtcnt_t; /**< Realtime counter. */ | ||
40 | typedef uint64_t rttime_t; /**< Realtime accumulator. */ | ||
41 | typedef uint32_t syssts_t; /**< System status word. */ | ||
42 | typedef uint8_t tmode_t; /**< Thread flags. */ | ||
43 | typedef uint8_t tstate_t; /**< Thread state. */ | ||
44 | typedef uint8_t trefs_t; /**< Thread references counter. */ | ||
45 | typedef uint8_t tslices_t; /**< Thread time slices counter.*/ | ||
46 | typedef uint32_t tprio_t; /**< Thread priority. */ | ||
47 | typedef int32_t msg_t; /**< Inter-thread message. */ | ||
48 | typedef int32_t eventid_t; /**< Numeric event identifier. */ | ||
49 | typedef uint32_t eventmask_t; /**< Mask of event identifiers. */ | ||
50 | typedef uint32_t eventflags_t; /**< Mask of event flags. */ | ||
51 | typedef int32_t cnt_t; /**< Generic signed counter. */ | ||
52 | typedef uint32_t ucnt_t; /**< Generic unsigned counter. */ | ||
53 | /** @} */ | ||
54 | |||
55 | /** | ||
56 | * @brief ROM constant modifier. | ||
57 | * @note It is set to use the "const" keyword in this port. | ||
58 | */ | ||
59 | #define ROMCONST const | ||
60 | |||
61 | /** | ||
62 | * @brief Makes functions not inlineable. | ||
63 | * @note If the compiler does not support such attribute then some | ||
64 | * time-dependent services could be degraded. | ||
65 | */ | ||
66 | #define NOINLINE __attribute__((noinline)) | ||
67 | |||
68 | /** | ||
69 | * @brief Optimized thread function declaration macro. | ||
70 | */ | ||
71 | #define PORT_THD_FUNCTION(tname, arg) void tname(void *arg) | ||
72 | |||
73 | /** | ||
74 | * @brief Packed variable specifier. | ||
75 | */ | ||
76 | #define PACKED_VAR __attribute__((packed)) | ||
77 | |||
78 | /** | ||
79 | * @brief Memory alignment enforcement for variables. | ||
80 | */ | ||
81 | #define ALIGNED_VAR(n) __attribute__((aligned(n))) | ||
82 | |||
83 | /** | ||
84 | * @brief Size of a pointer. | ||
85 | * @note To be used where the sizeof operator cannot be used, preprocessor | ||
86 | * expressions for example. | ||
87 | */ | ||
88 | #define SIZEOF_PTR 4 | ||
89 | |||
90 | /** | ||
91 | * @brief True if alignment is low-high in current architecture. | ||
92 | */ | ||
93 | #define REVERSE_ORDER 0 | ||
94 | |||
95 | #endif /* CHTYPES_H */ | ||
96 | |||
97 | /** @} */ | ||
diff --git a/lib/chibios/os/common/ports/e200/compilers/GCC/ivor.S b/lib/chibios/os/common/ports/e200/compilers/GCC/ivor.S new file mode 100644 index 000000000..8014ea995 --- /dev/null +++ b/lib/chibios/os/common/ports/e200/compilers/GCC/ivor.S | |||
@@ -0,0 +1,263 @@ | |||
1 | /* | ||
2 | ChibiOS - Copyright (C) 2006,2007,2008,2009,2010,2011,2012,2013,2014, | ||
3 | 2015,2016,2017,2018,2019,2020,2021 Giovanni Di Sirio. | ||
4 | |||
5 | This file is part of ChibiOS. | ||
6 | |||
7 | ChibiOS is free software; you can redistribute it and/or modify | ||
8 | it under the terms of the GNU General Public License as published by | ||
9 | the Free Software Foundation version 3 of the License. | ||
10 | |||
11 | ChibiOS is distributed in the hope that it will be useful, | ||
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | GNU General Public License for more details. | ||
15 | |||
16 | You should have received a copy of the GNU General Public License | ||
17 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
18 | */ | ||
19 | |||
20 | /** | ||
21 | * @file GCC/ivor.S | ||
22 | * @brief Kernel ISRs. | ||
23 | * | ||
24 | * @addtogroup PPC_CORE | ||
25 | * @{ | ||
26 | */ | ||
27 | |||
28 | #if !defined(FALSE) || defined(__DOXYGEN__) | ||
29 | #define FALSE 0 | ||
30 | #endif | ||
31 | |||
32 | #if !defined(TRUE) || defined(__DOXYGEN__) | ||
33 | #define TRUE 1 | ||
34 | #endif | ||
35 | |||
36 | /* | ||
37 | * Imports the PPC configuration headers. | ||
38 | */ | ||
39 | #define _FROM_ASM_ | ||
40 | #include "chlicense.h" | ||
41 | #include "chconf.h" | ||
42 | #include "chcore.h" | ||
43 | |||
44 | #if defined(__HIGHTEC__) | ||
45 | #define se_beq beq | ||
46 | #endif | ||
47 | |||
48 | #if !defined(__DOXYGEN__) | ||
49 | |||
50 | .section .handlers, "ax" | ||
51 | |||
52 | #if PPC_SUPPORTS_DECREMENTER | ||
53 | /* | ||
54 | * _IVOR10 handler (Book-E decrementer). | ||
55 | */ | ||
56 | .align 4 | ||
57 | .globl _IVOR10 | ||
58 | .type _IVOR10, @function | ||
59 | _IVOR10: | ||
60 | /* Saving the external context (port_extctx structure).*/ | ||
61 | e_stwu sp, -80(sp) | ||
62 | #if PPC_USE_VLE && PPC_SUPPORTS_VLE_MULTI | ||
63 | e_stmvsrrw 8(sp) /* Saves PC, MSR. */ | ||
64 | e_stmvsprw 16(sp) /* Saves CR, LR, CTR, XER. */ | ||
65 | e_stmvgprw 32(sp) /* Saves GPR0, GPR3...GPR12. */ | ||
66 | #else /* !(PPC_USE_VLE && PPC_SUPPORTS_VLE_MULTI) */ | ||
67 | se_stw r0, 32(sp) /* Saves GPR0. */ | ||
68 | mfSRR0 r0 | ||
69 | se_stw r0, 8(sp) /* Saves PC. */ | ||
70 | mfSRR1 r0 | ||
71 | se_stw r0, 12(sp) /* Saves MSR. */ | ||
72 | mfCR r0 | ||
73 | se_stw r0, 16(sp) /* Saves CR. */ | ||
74 | mfLR r0 | ||
75 | se_stw r0, 20(sp) /* Saves LR. */ | ||
76 | mfCTR r0 | ||
77 | se_stw r0, 24(sp) /* Saves CTR. */ | ||
78 | mfXER r0 | ||
79 | se_stw r0, 28(sp) /* Saves XER. */ | ||
80 | se_stw r3, 36(sp) /* Saves GPR3...GPR12. */ | ||
81 | se_stw r4, 40(sp) | ||
82 | se_stw r5, 44(sp) | ||
83 | se_stw r6, 48(sp) | ||
84 | se_stw r7, 52(sp) | ||
85 | e_stw r8, 56(sp) | ||
86 | e_stw r9, 60(sp) | ||
87 | e_stw r10, 64(sp) | ||
88 | e_stw r11, 68(sp) | ||
89 | e_stw r12, 72(sp) | ||
90 | #endif /* !(PPC_USE_VLE && PPC_SUPPORTS_VLE_MULTI) */ | ||
91 | |||
92 | /* Increasing the SPGR0 register.*/ | ||
93 | mfspr r0, 272 | ||
94 | se_addi r0, 1 | ||
95 | mtspr 272, r0 | ||
96 | |||
97 | /* Reset DIE bit in TSR register.*/ | ||
98 | e_lis r3, 0x0800 /* DIS bit mask. */ | ||
99 | mtspr 336, r3 /* TSR register. */ | ||
100 | |||
101 | /* Restoring pre-IRQ MSR register value.*/ | ||
102 | mfSRR1 r0 | ||
103 | #if !PPC_USE_IRQ_PREEMPTION | ||
104 | /* No preemption, keeping EE disabled.*/ | ||
105 | se_bclri r0, 16 /* EE = bit 16. */ | ||
106 | #endif | ||
107 | mtMSR r0 | ||
108 | |||
109 | #if CH_DBG_SYSTEM_STATE_CHECK | ||
110 | e_bl _dbg_check_enter_isr | ||
111 | e_bl _dbg_check_lock_from_isr | ||
112 | #endif | ||
113 | /* System tick handler invocation.*/ | ||
114 | e_bl chSysTimerHandlerI | ||
115 | #if CH_DBG_SYSTEM_STATE_CHECK | ||
116 | e_bl _dbg_check_unlock_from_isr | ||
117 | e_bl _dbg_check_leave_isr | ||
118 | #endif | ||
119 | |||
120 | #if PPC_USE_IRQ_PREEMPTION | ||
121 | /* Prevents preemption again.*/ | ||
122 | wrteei 0 | ||
123 | #endif | ||
124 | |||
125 | /* Jumps to the common IVOR epilogue code.*/ | ||
126 | e_b _ivor_exit | ||
127 | #endif /* PPC_SUPPORTS_DECREMENTER */ | ||
128 | |||
129 | /* | ||
130 | * _IVOR4 handler (Book-E external interrupt). | ||
131 | */ | ||
132 | .align 4 | ||
133 | .globl _IVOR4 | ||
134 | .type _IVOR4, @function | ||
135 | _IVOR4: | ||
136 | /* Saving the external context (port_extctx structure).*/ | ||
137 | e_stwu sp, -80(sp) | ||
138 | #if PPC_USE_VLE && PPC_SUPPORTS_VLE_MULTI | ||
139 | e_stmvsrrw 8(sp) /* Saves PC, MSR. */ | ||
140 | e_stmvsprw 16(sp) /* Saves CR, LR, CTR, XER. */ | ||
141 | e_stmvgprw 32(sp) /* Saves GPR0, GPR3...GPR12. */ | ||
142 | #else /* !(PPC_USE_VLE && PPC_SUPPORTS_VLE_MULTI) */ | ||
143 | se_stw r0, 32(sp) /* Saves GPR0. */ | ||
144 | mfSRR0 r0 | ||
145 | se_stw r0, 8(sp) /* Saves PC. */ | ||
146 | mfSRR1 r0 | ||
147 | se_stw r0, 12(sp) /* Saves MSR. */ | ||
148 | mfCR r0 | ||
149 | se_stw r0, 16(sp) /* Saves CR. */ | ||
150 | mfLR r0 | ||
151 | se_stw r0, 20(sp) /* Saves LR. */ | ||
152 | mfCTR r0 | ||
153 | se_stw r0, 24(sp) /* Saves CTR. */ | ||
154 | mfXER r0 | ||
155 | se_stw r0, 28(sp) /* Saves XER. */ | ||
156 | se_stw r3, 36(sp) /* Saves GPR3...GPR12. */ | ||
157 | se_stw r4, 40(sp) | ||
158 | se_stw r5, 44(sp) | ||
159 | se_stw r6, 48(sp) | ||
160 | se_stw r7, 52(sp) | ||
161 | e_stw r8, 56(sp) | ||
162 | e_stw r9, 60(sp) | ||
163 | e_stw r10, 64(sp) | ||
164 | e_stw r11, 68(sp) | ||
165 | e_stw r12, 72(sp) | ||
166 | #endif /* !(PPC_USE_VLE && PPC_SUPPORTS_VLE_MULTI) */ | ||
167 | |||
168 | /* Increasing the SPGR0 register.*/ | ||
169 | mfspr r0, 272 | ||
170 | se_addi r0, 1 | ||
171 | mtspr 272, r0 | ||
172 | |||
173 | /* Software vector address from the INTC register.*/ | ||
174 | e_lis r3, INTC_IACKR_ADDR@h | ||
175 | e_or2i r3, INTC_IACKR_ADDR@l /* IACKR register address. */ | ||
176 | e_lwz r3, 0(r3) /* IACKR register value. */ | ||
177 | e_lwz r3, 0(r3) | ||
178 | mtCTR r3 /* Software handler address. */ | ||
179 | |||
180 | /* Restoring pre-IRQ MSR register value.*/ | ||
181 | mfSRR1 r0 | ||
182 | #if !PPC_USE_IRQ_PREEMPTION | ||
183 | /* No preemption, keeping EE disabled.*/ | ||
184 | se_bclri r0, 16 /* EE = bit 16. */ | ||
185 | #endif | ||
186 | mtMSR r0 | ||
187 | |||
188 | /* Exectes the software handler.*/ | ||
189 | se_bctrl | ||
190 | |||
191 | #if PPC_USE_IRQ_PREEMPTION | ||
192 | /* Prevents preemption again.*/ | ||
193 | wrteei 0 | ||
194 | #endif | ||
195 | |||
196 | /* Informs the INTC that the interrupt has been served.*/ | ||
197 | mbar 0 | ||
198 | e_lis r3, INTC_EOIR_ADDR@h | ||
199 | e_or2i r3, INTC_EOIR_ADDR@l | ||
200 | se_stw r3, 0(r3) /* Writing any value should do. */ | ||
201 | |||
202 | /* Common IVOR epilogue code, context restore.*/ | ||
203 | .globl _ivor_exit | ||
204 | _ivor_exit: | ||
205 | /* Decreasing the SPGR0 register.*/ | ||
206 | mfspr r0, 272 | ||
207 | se_subi r0, 1 | ||
208 | mtspr 272, r0 | ||
209 | |||
210 | #if CH_DBG_STATISTICS | ||
211 | e_bl _stats_start_measure_crit_thd | ||
212 | #endif | ||
213 | #if CH_DBG_SYSTEM_STATE_CHECK | ||
214 | e_bl _dbg_check_lock | ||
215 | #endif | ||
216 | e_bl chSchIsPreemptionRequired | ||
217 | se_cmpi r3, 0 | ||
218 | se_beq .noresch | ||
219 | e_bl chSchDoReschedule | ||
220 | .noresch: | ||
221 | #if CH_DBG_SYSTEM_STATE_CHECK | ||
222 | e_bl _dbg_check_unlock | ||
223 | #endif | ||
224 | #if CH_DBG_STATISTICS | ||
225 | e_bl _stats_stop_measure_crit_thd | ||
226 | #endif | ||
227 | |||
228 | /* Restoring the external context.*/ | ||
229 | #if PPC_USE_VLE && PPC_SUPPORTS_VLE_MULTI | ||
230 | e_lmvgprw 32(sp) /* Restores GPR0, GPR3...GPR12. */ | ||
231 | e_lmvsprw 16(sp) /* Restores CR, LR, CTR, XER. */ | ||
232 | e_lmvsrrw 8(sp) /* Restores PC, MSR. */ | ||
233 | #else /*!(PPC_USE_VLE && PPC_SUPPORTS_VLE_MULTI) */ | ||
234 | se_lwz r3, 36(sp) /* Restores GPR3...GPR12. */ | ||
235 | se_lwz r4, 40(sp) | ||
236 | se_lwz r5, 44(sp) | ||
237 | se_lwz r6, 48(sp) | ||
238 | se_lwz r7, 52(sp) | ||
239 | e_lwz r8, 56(sp) | ||
240 | e_lwz r9, 60(sp) | ||
241 | e_lwz r10, 64(sp) | ||
242 | e_lwz r11, 68(sp) | ||
243 | e_lwz r12, 72(sp) | ||
244 | se_lwz r0, 8(sp) | ||
245 | mtSRR0 r0 /* Restores PC. */ | ||
246 | se_lwz r0, 12(sp) | ||
247 | mtSRR1 r0 /* Restores MSR. */ | ||
248 | se_lwz r0, 16(sp) | ||
249 | mtCR r0 /* Restores CR. */ | ||
250 | se_lwz r0, 20(sp) | ||
251 | mtLR r0 /* Restores LR. */ | ||
252 | se_lwz r0, 24(sp) | ||
253 | mtCTR r0 /* Restores CTR. */ | ||
254 | se_lwz r0, 28(sp) | ||
255 | mtXER r0 /* Restores XER. */ | ||
256 | se_lwz r0, 32(sp) /* Restores GPR0. */ | ||
257 | #endif /* !(PPC_USE_VLE && PPC_SUPPORTS_VLE_MULTI) */ | ||
258 | e_addi sp, sp, 80 /* Back to the previous frame. */ | ||
259 | se_rfi | ||
260 | |||
261 | #endif /* !defined(__DOXYGEN__) */ | ||
262 | |||
263 | /** @} */ | ||
diff --git a/lib/chibios/os/common/ports/e200/compilers/GCC/mk/port.mk b/lib/chibios/os/common/ports/e200/compilers/GCC/mk/port.mk new file mode 100644 index 000000000..3bd08cdc0 --- /dev/null +++ b/lib/chibios/os/common/ports/e200/compilers/GCC/mk/port.mk | |||
@@ -0,0 +1,13 @@ | |||
1 | # List of the ChibiOS/RT e200 generic port files. | ||
2 | PORTSRC = $(CHIBIOS)/os/common/ports/e200/chcore.c | ||
3 | |||
4 | PORTASM = $(CHIBIOS)/os/common/ports/e200/compilers/GCC/ivor.S \ | ||
5 | $(CHIBIOS)/os/common/ports/e200/compilers/GCC/chcoreasm.S | ||
6 | |||
7 | PORTINC = $(CHIBIOS)/os/common/ports/e200 \ | ||
8 | $(CHIBIOS)/os/common/ports/e200/compilers/GCC | ||
9 | |||
10 | # Shared variables | ||
11 | ALLXASMSRC += $(PORTASM) | ||
12 | ALLCSRC += $(PORTSRC) | ||
13 | ALLINC += $(PORTINC) | ||