mirror of
https://github.com/drasko/codezero.git
synced 2026-01-14 20:03:16 +01:00
Initial commit
This commit is contained in:
10
src/platform/tests/SConscript
Normal file
10
src/platform/tests/SConscript
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
|
||||
# Inherit global environment
|
||||
Import('env')
|
||||
|
||||
# The set of source files associated with this SConscript file.
|
||||
src_local = ['offsets.c']
|
||||
|
||||
obj = env.Object(src_local)
|
||||
Return('obj')
|
||||
7
src/platform/tests/offsets.c
Normal file
7
src/platform/tests/offsets.c
Normal file
@@ -0,0 +1,7 @@
|
||||
#include <macros.h>
|
||||
#include <config.h>
|
||||
#include INC_PLAT(offsets.h)
|
||||
|
||||
unsigned int PHYS_MEM_START = 0; /* Dynamically allocated */
|
||||
unsigned int PHYS_MEM_END = 0; /* Dynamically allocated */
|
||||
unsigned int PHYS_ADDR_BASE = 0; /* Dynamically allocated */
|
||||
Reference in New Issue
Block a user