Commit Graph

1464 Commits (123a76c9c8ba56f7f7ce28fed4e8a3302471b215)
 

Author SHA1 Message Date
bunnei 2b0d7a1d29 Merge pull request #315 from chinhodado/master
Clean up some warnings
10 years ago
Yuri Kunde Schlesner c7bba5a079 Travis: Enable APT cache. This should give us a small boost
http://docs.travis-ci.com/user/caching/#Caching-Ubuntu-packages
10 years ago
Chin e795692614 Clean up some warnings 10 years ago
Tony Wasserka c2753d37a7 Merge pull request #317 from yuriks/make_unique
Add a clone of std::make_unique and revert C++14 requirement
10 years ago
Yuri Kunde Schlesner 98a9aba46f Remove C++14/1y requirement 10 years ago
Yuri Kunde Schlesner 82528ba7df Common: Add a clone of std::make_unique 10 years ago
Yuri Kunde Schlesner adee775f44 Kernel: Implement support for current thread pseudo-handle
This boots a few (mostly Nintendo 1st party) games further.
10 years ago
bunnei f1309e6bf0 Merge pull request #306 from Subv/even_more_savedata
SaveData: Added some documentation to FormatSaveData
10 years ago
Subv fc73bef692 FS_U: Added the command to the docs of SaveData functions 10 years ago
bunnei eb394ac0af Merge pull request #309 from chinhodado/patch-1
Properly erase/remove a DebuggerObserver
10 years ago
bunnei 245abb4125 Merge pull request #294 from lioncash/var
armemu: Narrow the scope of some variables in handle_v6_insn
10 years ago
bunnei dc5d1a9061 Merge pull request #305 from lioncash/paren
armemu: Get rid of bitwise parenthesis warnings
10 years ago
chinhodado d31c23e958 Properly erase/remove an observer 10 years ago
Lioncash 4b506cec01 armemu: Implement QASX and QSAX 10 years ago
Lioncash 0f3a6a161c armemu: Implement SMLSD 10 years ago
Lioncash 4a646ace1f dyncom: Implement UMAAL 10 years ago
bunnei 017e6a488e Merge pull request #302 from purpasmart96/flushshutup
GSP_GPU: Shut up FlushDataCache
10 years ago
Lioncash 00e8ec4a9e armemu: Implement USAD8 and USADA8 10 years ago
Lioncash 92c53fe522 armemu: Fix SSAT16
The lower-bound would never be negative like it should
10 years ago
Lioncash b9fc0b4b80 armemu: Clean up naming and formatting for SSAT16 10 years ago
purpasmart96 b2c64eb5ff GSP_GPU: Shut up FlushDataCache 10 years ago
bunnei 765dbabdb6 Merge pull request #308 from Subv/more_savedata
SystemSaveData: Fixed a typo that was segfaulting
10 years ago
Subv 78e0f36857 SystemSaveData: Fixed a typo that was segfaulting 10 years ago
bunnei 24b5e87279 Merge pull request #304 from lioncash/sflags
armemu: Set GE flags properly for SSUB16, SADD16, SSAX, and SASX.
10 years ago
bunnei 4959e3b2c0 Merge pull request #307 from lioncash/usat16
armemu: Fix USAT16.
10 years ago
bunnei c71f8840e5 Merge pull request #301 from Subv/more_savedata
SaveData: Implemented the SystemSaveData archive.
10 years ago
Subv f9472eda0a SystemSaveData: Added a TODO to move it to the NAND.
Maybe sometime when we actually implement that
10 years ago
Lioncash e683f654ce armemu: Fix lower-bounds clamping for USAT16 10 years ago
Subv 77f0cdfaf4 SaveData: Added some documentation to FormatSaveData
We still don't know what the other parameters do, but they appear to be very similar to those of FormatThisUserSaveData.
Most likely FormatThisUserSaveData is just an alias for FormatSaveData with LowPathType Empty
10 years ago
Lioncash 6b632bbe37 armemu: More concise names for USAT16-related variables 10 years ago
Lioncash eaae0ad502 armemu: Get rid of bitwise parenthesis warnings 10 years ago
Lioncash 4dc8eb40be armemu: Set GE flags correctly for SSUB16, SADD16, SSAX, and SASX. 10 years ago
bunnei 8ac22e7efc Merge pull request #299 from lioncash/join
Combine SSUB16, SADD16, SASX, and SSAX.
10 years ago
Subv bec527fa24 SaveData: Implemented the SystemSaveData archive.
It will be stored in the /syssavedata folder. This archive is user by various Services and possibly games via the FS:U service.
10 years ago
bunnei 797efbde1a Merge pull request #298 from lioncash/flags
armemu: Unset GE flags for UADD8 if results are < 0x100
10 years ago
bunnei a968adf50e Merge pull request #295 from lioncash/umaal
armemu: Implement UMAAL
10 years ago
Lioncash 85c318078d armemu: Combine SSUB16, SADD16, SASX, and SSAX. 10 years ago
bunnei 075126247f Merge pull request #292 from lioncash/backports
Backport more skyeye fixes from 3dmoo
10 years ago
bunnei e00e303275 Merge pull request #297 from lioncash/ssub16
armemu: Fix SSUB16
10 years ago
bunnei 7bae450379 Merge pull request #185 from purpasmart96/mem_perm
Kernel: Add missing permissions
10 years ago
bunnei 94a103a000 Merge pull request #288 from Subv/savedata_stuff
FS_U: Implemented the SaveData archive
10 years ago
Subv ea9ce0fba7 Filesystem/Archives: Implemented the SaveData archive
The savedata for each game is stored in /savedata/<ProgramID> for NCCH files. ELF files and 3DSX files use the folder 0 because they have no ID information

Got rid of the code duplication in File and Directory

Files that deal with the host machine's file system now live in DiskFile, similarly for directories and DiskDirectory and archives with DiskArchive.

FS_U: Use the correct error code when a file wasn't found
10 years ago
Lioncash 41fee1c940 armemu: Unset GE flags for UADD8 if results are < 0x100
Reference manual states these must be set to zero if this case is true.
10 years ago
Lioncash 58dc554733 armemu: Fix SSUB16
Broken from the same reason SADD16 was.

The lo part of the result should only be constructed from the lo halfwords of rm and rn.
The hi part of the result should only be constructed from the hi halfwords of rm and rn.
10 years ago
bunnei e6f440ea7f Merge pull request #293 from lioncash/sops
armemu: Fix SADD16
10 years ago
bunnei 3e9d4a7917 Merge pull request #287 from lioncash/qaddsub16
armemu: Join QADD16/QSUB16 and fix saturation clamping.
10 years ago
Lioncash 5820dba6b7 armemu: Implement UMAAL 10 years ago
Lioncash 2d91164bb9 armemu: Narrow the scope of some variables in handle_v6_insn
There's no reason to have these in the outer-most scope.
10 years ago
Lioncash 5289a496a7 armemu: Fix SADD16
The lo and hi parts of the result were being constructed as a result of hi and lo halfword intermixing from the rm and rn regs. However the lo part of the result should be constructed only from the lo halfwords of rm and rn, and the hi part of the result should only be constructed from the hi halfwords of rm and rn.
10 years ago
Normmatt 73211dc8fe armemu: Fix PKHTB 10 years ago