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
Normmatt
8045df14d2
armemu: Implement REVSH
10 years ago
Normmatt
bc81cc9490
armemu: Fix UXTAB/UXTAH
10 years ago
Normmatt
b5dbd6f2a2
armemu: Fix SXTAB
10 years ago
Normmatt
efebd5589a
armemu: Fix SXTAH
10 years ago
bunnei
fdb4ef5210
Merge pull request #289 from lioncash/smops
...
Join SMUAD, SMUSD, and SMLAD ops. Also fix them as well.
10 years ago
bunnei
ec9ac2f51a
Merge pull request #290 from lioncash/vsub
...
armemu: Backport some VFP fixes from 3dmoo.
10 years ago
Normmatt
9c127f4a01
armemu: Fix FTOUI NaN sign.
10 years ago
Normmatt
2ed03c10e0
armemu: Fix FSUBS bug where NaN shouldn't be negated
10 years ago
Lioncash
d5bcddb77c
armemu: Fix SMUAD, SMUSD, and SMLAD
...
Wrong values were being multiplied together.
10 years ago
Lioncash
0f9e3baf39
armemu: Join SMUAD, SMUSD, and SMLAD
10 years ago
Lioncash
4c53799229
armemu: Fix lower-bound signed saturation clamping for QADD16/QSUB16.
10 years ago
Lioncash
49817e89d9
armemu: Join QADD16 and QSUB16 together.
...
The only difference between these ops is one adds and one subtracts. Everything is literally the same.
10 years ago
bunnei
cdfa7157eb
Merge pull request #286 from yuriks/msvc-fix
...
Comment out empty arrays causing compile errors in MSVC
10 years ago
Yuri Kunde Schlesner
082bf803ab
Comment out empty arrays causing compile errors in MSVC
10 years ago
bunnei
a8098187aa
Merge pull request #285 from lioncash/uxtab16
...
armemu: Implement UXTAB16
10 years ago
bunnei
cd2a31eaf4
Merge pull request #283 from yuriks/archive-refactor
...
Archive refactor
10 years ago
Yuri Kunde Schlesner
666f6deb47
Work around libstdc++'s lack of support for std::hash on enums
10 years ago
Yuri Kunde Schlesner
83e6e4ffec
FS.Archive: Clean up treatment of archives and their handles
...
- Refactor FS::Archive internals to make Archive creation and lifetime
management clearer.
- Remove the "Archive as a File" hack.
- Implement 64-bit Archive handles.
10 years ago
Yuri Kunde Schlesner
0931a42af0
Service.FS: Rename FileSys::File to FileBackend
10 years ago
Yuri Kunde Schlesner
d51afab0bc
Service.FS: Rename FileSys::Directory to DirectoryBackend
10 years ago
Yuri Kunde Schlesner
82fe821e87
Service.FS: Rename FileSys::Archive to ArchiveBackend
10 years ago
Yuri Kunde Schlesner
f6153679b0
Service.FS: Do archive registration using IdCode instead of name
10 years ago
Yuri Kunde Schlesner
ca67bb7945
HLE: Rename namespaces to match move & fix initialization order
10 years ago
Yuri Kunde Schlesner
c72ccfa6db
HLE: Move kernel/archive.* to service/fs/
10 years ago
Yuri Kunde Schlesner
731b31fe97
Switch to C++14 to use std::make_unique
10 years ago
Lioncash
1c7f77334c
armemu: Implement UXTAB16
10 years ago
Tony Wasserka
1249454b7c
Update README.md
...
Fix spelling mistakes.
10 years ago
Tony Wasserka
69e546b7d5
More Readme updates.
10 years ago
Tony Wasserka
e47a60db06
Provide a direct webchat link to #citra in the Readme
10 years ago