currently the stack is hard coded to only have a few allocated pages of memory. need to implement dynamic allocation so that if stack reaches into unallocated addresses, a new page is allocated for it.
Then if the stack unwinds enough that full pages become empty, they should also be periodically deallocated.
currently the stack is hard coded to only have a few allocated pages of memory. need to implement dynamic allocation so that if stack reaches into unallocated addresses, a new page is allocated for it.
Then if the stack unwinds enough that full pages become empty, they should also be periodically deallocated.