Hey Yoshihiro, I'm using your malloc in my PSPRick project. It works fine but I made a small modification for it. I changed: numbytes = numbytes + sizeof(struct mem_control_block); to: numbytes = ((numbytes+3)&~0x3) + sizeof(struct mem_cont...