mirror of
https://github.com/drasko/codezero.git
synced 2026-01-15 20:33:16 +01:00
cinfo array is now freed along with other init memory. bootmem allocator memory is reduced to be completely used up. free boot memory now prints the used free memory as well.
11 lines
289 B
Python
11 lines
289 B
Python
|
|
|
|
# Inherit global environment
|
|
Import('env')
|
|
|
|
# The set of source files associated with this SConscript file.
|
|
src_local = ['irq.c', 'scheduler.c', 'time.c', 'tcb.c', 'space.c', 'bootmem.c', 'resource.c', 'container.c', 'capability.c', 'cinfo.c']
|
|
|
|
obj = env.Object(src_local)
|
|
Return('obj')
|