2022-04-27 20:28:49 +08:00
|
|
|
############################################################################
|
|
|
|
|
# arch/arm/src/armv6-m/Make.defs
|
|
|
|
|
#
|
2024-12-05 14:05:04 +01:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
#
|
2022-04-27 20:28:49 +08:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
|
# License. You may obtain a copy of the License at
|
|
|
|
|
#
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
#
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
|
# under the License.
|
|
|
|
|
#
|
|
|
|
|
############################################################################
|
|
|
|
|
|
2023-04-06 12:49:11 +08:00
|
|
|
CMN_ASRCS += arm_exception.S arm_saveusercontext.S
|
2022-04-30 12:58:59 +08:00
|
|
|
|
2023-05-15 16:34:38 +08:00
|
|
|
CMN_CSRCS += arm_cpuinfo.c arm_doirq.c arm_hardfault.c arm_initialstate.c
|
2022-04-30 12:58:59 +08:00
|
|
|
CMN_CSRCS += arm_schedulesigaction.c arm_sigdeliver.c arm_svcall.c
|
2024-10-17 12:18:05 +08:00
|
|
|
CMN_CSRCS += arm_systemreset.c arm_tcbinfo.c
|
2024-08-09 22:33:40 +08:00
|
|
|
CMN_CSRCS += arm_trigger_irq.c
|
2022-04-30 12:58:59 +08:00
|
|
|
|
2024-10-17 12:18:05 +08:00
|
|
|
ifneq ($(CONFIG_ARCH_HAVE_CUSTOM_VECTORS),y)
|
|
|
|
|
CMN_CSRCS += arm_vectors.c
|
|
|
|
|
endif
|
|
|
|
|
|
2025-10-30 10:06:57 +02:00
|
|
|
<<<<<<< HEAD:arch/z80/src/z80/Make.defs
|
|
|
|
|
CMN_CSRCS = z80_allocateheap.c z80_createstack.c z80_doirq.c
|
|
|
|
|
CMN_CSRCS += z80_exit.c z80_initialize.c z80_interruptcontext.c
|
|
|
|
|
CMN_CSRCS += z80_idle.c z80_mdelay.c z80_releasestack.c
|
|
|
|
|
CMN_CSRCS += z80_switchcontext.c z80_stackframe.c
|
|
|
|
|
CMN_CSRCS += z80_udelay.c z80_usestack.c
|
|
|
|
|
=======
|
2024-08-17 16:32:50 +08:00
|
|
|
ifneq ($(filter y,$(CONFIG_DEBUG_FEATURES)$(CONFIG_ARM_COREDUMP_REGION)),)
|
2022-04-30 12:58:59 +08:00
|
|
|
CMN_CSRCS += arm_dumpnvic.c
|
|
|
|
|
endif
|
2025-10-30 10:06:57 +02:00
|
|
|
>>>>>>> 753c7b2dd6 (walnux: moveout):arch/arm/armv6-m/Make.defs
|
2022-04-30 12:58:59 +08:00
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_RAMVECTORS),y)
|
|
|
|
|
CMN_CSRCS += arm_ramvec_initialize.c arm_ramvec_attach.c
|
|
|
|
|
endif
|