diff options
| author | Jan Tuomi <jan@jantuomi.fi> | 2024-04-14 15:24:49 +0300 |
|---|---|---|
| committer | Jan Tuomi <jan@jantuomi.fi> | 2024-04-14 15:24:49 +0300 |
| commit | 5f9b5cc1df8e0c55fd21e19f2255faace28e801f (patch) | |
| tree | 4942d10c984c3fa6cb332d104446400ff816fe00 /atk16_asm/builtin_asm | |
| parent | 030dfe49770997282bb214bb90d9b875eb26d6f2 (diff) | |
Fix some docs
Diffstat (limited to 'atk16_asm/builtin_asm')
| -rw-r--r-- | atk16_asm/builtin_asm/std_bump_alloc.atk16 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/atk16_asm/builtin_asm/std_bump_alloc.atk16 b/atk16_asm/builtin_asm/std_bump_alloc.atk16 index 3e91800..1d87435 100644 --- a/atk16_asm/builtin_asm/std_bump_alloc.atk16 +++ b/atk16_asm/builtin_asm/std_bump_alloc.atk16 @@ -12,14 +12,14 @@ ; ; To initialize the bump allocator, call bump_reset. ; -; The arena allocator cannot free individual blocks, only reset the entire heap. +; The bump allocator cannot free individual blocks, only reset the entire heap. ; ; The memory layout is as follows: ; 0xE7EF (heap_segment) alloc_next value ; 0xE7EE downwards allocated blocks ; ; The alloc_next value is a pointer to the next free word in the heap. -; The alloc_next value is stored in the first word of the heap. +; It is stored in the first word of the heap. @label bump_next_p heap_segment |
