X-Git-Url: https://robinkrens.nl/gitweb/?p=cortex-from-scratch;a=blobdiff_plain;f=include%2Fstm32.h;h=4f5225702f1bd4c7ba91a3b53972d8af4d1ca927;hp=37f039faa35d16dbedff9b47bbd70fa0c20de0e9;hb=3f9ee85c250250580f0ceb38525ddb99ebc6d36e;hpb=22c1abee1ad44eb88784fd7ff38ca669f41b6c01 diff --git a/include/stm32.h b/include/stm32.h index 37f039f..4f52257 100644 --- a/include/stm32.h +++ b/include/stm32.h @@ -28,4 +28,10 @@ extern void sysinfo(); /* LIB.C */ extern void addrtohex(const uint32_t); +/* MM.C */ +extern void mm_init(); +extern void * mm_alloc(size_t); +extern void free(void *); +extern void test_memory(uint32_t *); + #endif