How many big is the free memory ram when a program is started on PSP FAT ?
CFW 3.71 M33-4.
I mean: the memory ram would be lesser than 32 Mb: a part of it is occupied by programs, data and prx. Do you have an indicative value ?
An info please
There is 24MB free in the user memory partition. When you start your application, its code will be loaded into this. So if your program code is 1MB, you will have 23MB of user memory left. You can allocate from this space.
The remaining 8MB partition is kernel memory. You *can* load some small stuff here (most of it will be occupied by the kernel).
On the Slim PSP you can use the regular 24MB user memory as well as the extra 32MB as if it was user memory.
The remaining 8MB partition is kernel memory. You *can* load some small stuff here (most of it will be occupied by the kernel).
On the Slim PSP you can use the regular 24MB user memory as well as the extra 32MB as if it was user memory.
-
- Posts: 160
- Joined: Wed Jul 12, 2006 7:09 am
Thanks Torch. I'm checking the data memory of nd, and the system reported a value similar to 24 Mb when the Hello world starts. So, I had to verify if it was the normal behaviour.Torch wrote:There is 24MB free in the user memory partition. When you start your application, its code will be loaded into this. So if your program code is 1MB, you will have 23MB of user memory left. You can allocate from this space.
The remaining 8MB partition is kernel memory. You *can* load some small stuff here (most of it will be occupied by the kernel).
On the Slim PSP you can use the regular 24MB user memory as well as the extra 32MB as if it was user memory.