mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 07:25:26 +00:00
- Implemented MTCRF instruction.
- Implemented sys_spu_thread_set_argument syscall. - Improved Debugger.
This commit is contained in:
parent
6d7d3acb43
commit
fb57bb9c4e
21 changed files with 456 additions and 276 deletions
|
|
@ -30,13 +30,16 @@ bool SELFLoader::LoadData(u64 offset)
|
|||
if( !l.LoadEhdrInfo(self_hdr.se_elfoff) ||
|
||||
!l.LoadPhdrInfo(self_hdr.se_phdroff) ||
|
||||
!l.LoadShdrInfo(self_hdr.se_shdroff) ||
|
||||
!l.LoadData(offset) )
|
||||
!l.LoadData(self_hdr.se_appinfooff) )
|
||||
{
|
||||
ConLog.Error("Broken SELF file.");
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
machine = l.GetMachine();
|
||||
entry = l.GetEntry();
|
||||
|
||||
return true;
|
||||
|
||||
ConLog.Error("Boot SELF not supported yet!");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue