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
A shit simple implementation (note note) for class acid68000:
int heapPointer = 0x60000;
// TODO - round size to page boundary
int allocate(int size, int bits) {
int p = heapPointer;
heapPointer += size;
return p;
}
Expand the ACID500 exec with memory allocation service.
Add allocation heaps to chipmem and fastmem address spaces.
Display block usage on a memory map in monitor.
The text was updated successfully, but these errors were encountered: