Set up documentation generation

This commit is contained in:
dcodeIO
2018-03-19 01:12:18 +01:00
parent c0973433d6
commit 0fef69e445
47 changed files with 523 additions and 119 deletions

View File

@ -1,9 +1,11 @@
/**
* @file System Memory Allocator
* System Memory Allocator.
*
* Uses the environment's malloc and free implementations, i.e., when linking with other C-like
* programs that already provide these.
*/
*
* @module std/assembly/allocator/system
*//***/
declare function malloc(size: usize): usize;
declare function free(ptr: usize): void;