atsamd: Implement custom memory allocation functions

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor
2019-03-01 11:37:32 -05:00
parent a1d74a08e4
commit 0b33e0b427
2 changed files with 17 additions and 2 deletions

View File

@@ -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)
{