mirror of
https://github.com/drasko/codezero.git
synced 2026-01-14 03:43:15 +01:00
Initial commit
This commit is contained in:
9
src/arch/tests/SConscript
Normal file
9
src/arch/tests/SConscript
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
# Inherit global environment
|
||||
Import('env')
|
||||
|
||||
# The set of source files associated with this SConscript file.
|
||||
src_local = ['linker.c']
|
||||
|
||||
obj = env.Object(src_local)
|
||||
Return('obj')
|
||||
8
src/arch/tests/linker.c
Normal file
8
src/arch/tests/linker.c
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
#include <macros.h>
|
||||
#include <config.h>
|
||||
#include INC_ARCH(linker.h)
|
||||
#include INC_PLAT(offsets.h)
|
||||
|
||||
unsigned int kernel_mapping_end = 0;
|
||||
unsigned int _end = 0;
|
||||
Reference in New Issue
Block a user