diff options
Diffstat (limited to 'src/atsamd/main.c')
-rw-r--r-- | src/atsamd/main.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/atsamd/main.c b/src/atsamd/main.c index 9233662f..5a5a374d 100644 --- a/src/atsamd/main.c +++ b/src/atsamd/main.c @@ -10,6 +10,22 @@ DECL_CONSTANT(MCU, CONFIG_MCU); +// Return the start of memory available for dynamic allocations +void * +dynmem_start(void) +{ + extern uint32_t _ezero; + return &_ezero; +} + +// Return the end of memory available for dynamic allocations +void * +dynmem_end(void) +{ + extern uint32_t _sstack; + return &_sstack; +} + void command_reset(uint32_t *args) { |