ARMv7: Some functions registered, u64/s64 arg/result support

This commit is contained in:
Nekotekina 2015-01-24 23:48:45 +03:00
parent 08c0c90a05
commit 23923af487
4 changed files with 673 additions and 105 deletions

View file

@ -30,6 +30,15 @@ struct SceKernelMemBlockInfo
u32 access;
};
struct SceKernelAllocMemBlockOpt
{
u32 size;
u32 attr;
u32 alignment;
s32 uidBaseBlock;
vm::psv::ptr<const char> strBaseBlockName;
};
// Thread Manager definitions (threads)
typedef s32(*SceKernelThreadEntry)(u32 argSize, vm::psv::ptr<void> pArgBlock);