diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-03-01 11:37:32 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-03-01 19:05:00 -0500 |
commit | 0b33e0b427641f22b47afb230dc8f623d743971c (patch) | |
tree | 70f63ddebb52566466120f069da4cab36f31169b /src/atsamd/main.c | |
parent | a1d74a08e4f671edfc5b5ad575c3f97077e37154 (diff) | |
download | kutter-0b33e0b427641f22b47afb230dc8f623d743971c.tar.gz kutter-0b33e0b427641f22b47afb230dc8f623d743971c.tar.xz kutter-0b33e0b427641f22b47afb230dc8f623d743971c.zip |
atsamd: Implement custom memory allocation functions
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
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) { |