4584054e17
This bsp is used for test MIPS base code in simutator, implemented basic MIPS cpuport and serial port driver. Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
9 lines
142 B
Python
9 lines
142 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
|
|
group = DefineGroup('Applications', src, depend = [''])
|
|
|
|
Return('group')
|