Hi, I'm still pretty new to PSP programming, so I was wondering if someone could talk to me about performing dynamic memory allocation? Do we just use malloc? Are there size limitations?
Thanks a bunch.
Dynamic memory allocation
yeah, you need to use malloc() (and free(), when you are done). I use it in the text editor I am making.. However, Malloc & free aren't specifically psp related, so you would probably be better off searching google for "malloc tutorial" or something... that would give you the best picture on how to use it properly.