Using the memory map for the heap.

This commit is contained in:
2024-01-11 22:54:41 +01:00
parent 97732de3ae
commit 164f05bd59
6 changed files with 139 additions and 15 deletions

View File

@@ -42,7 +42,8 @@ env['LINKCOM'] = env['LINKCOM'].replace('$_LIBFLAGS', f'{crti_o[0]} {crtbegin_o}
prog_os = env.Program(
target = 'os.bin',
source = os_sources
source = os_sources,
LIBS = ['gcc']
)
env.Depends(prog_os, [crti_o, crtn_o])
env.Default(prog_os)