diff options
| author | hierophect <hierophect@gmail.com> | 2020-01-29 16:32:08 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-29 16:32:08 -0500 |
| commit | 898f4e1f72f52f7f4b87c56010e9b96a8440de63 (patch) | |
| tree | ea9b6cf16b4526dc366213d17dc60193a64a5724 /supervisor/port.h | |
| parent | 100409961aa32e84810d6c86309e66277b4ea902 (diff) | |
| parent | 5b6b4eb326ce2f7beca20ccdc81fdef422e45848 (diff) | |
Merge branch 'master' into stm32-meowbit
Diffstat (limited to 'supervisor/port.h')
| -rw-r--r-- | supervisor/port.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/supervisor/port.h b/supervisor/port.h index c8a011978..b289583dd 100644 --- a/supervisor/port.h +++ b/supervisor/port.h @@ -60,6 +60,12 @@ uint32_t *port_stack_get_limit(void); // Get stack top address uint32_t *port_stack_get_top(void); +// Get heap bottom address +uint32_t *port_heap_get_bottom(void); + +// Get heap top address +uint32_t *port_heap_get_top(void); + // Save and retrieve a word from memory that is preserved over reset. Used for safe mode. void port_set_saved_word(uint32_t); uint32_t port_get_saved_word(void); |
