You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 2, 2023. It is now read-only.
The memory pool allocator is in conflict with the newlib malloc()/sbrk() allocator.
Consider replacing it with a simple LIFO allocator for VRAM, e.g. using the __vram_free_start symbol provided by the linker scripts, and possibly MMIO(VRAMSIZE). For instance mc1-quake & mc1-doom use a similar (custom) approach already.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The memory pool allocator is in conflict with the newlib malloc()/sbrk() allocator.
Consider replacing it with a simple LIFO allocator for VRAM, e.g. using the
__vram_free_start
symbol provided by the linker scripts, and possiblyMMIO(VRAMSIZE)
. For instance mc1-quake & mc1-doom use a similar (custom) approach already.The text was updated successfully, but these errors were encountered: