1Import('RTT_ROOT')
2from building import *
3
4cwd = GetCurrentDir()
5src = Split("""
6start_gcc.S
7dm365.c
8dma.c
9findbit.S
10interrupt.c
11psc.c
12reset.c
13system_clock.c
14trap.c
15""")
16
17# The set of source files associated with this SConscript file.
18path = [cwd]
19
20group = DefineGroup('Startup', src, depend = [''], CPPPATH = path)
21
22Return('group')
23