shares are dynamically allocated as well:)
[mTask.git] / client / mem.h
1 #ifndef MEM_H
2 #define MEM_H
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
6
7 #include <stdint.h>
8 #include <stdbool.h>
9
10 #define MEMSIZE 1024
11
12 uint8_t *mem_top;
13 uint8_t *mem_bottom;
14 uint8_t *mem_task;
15 uint8_t *mem_sds;
16
17 uint16_t mem_free(void);
18
19 #ifdef __cplusplus
20 }
21 #endif
22 #endif