summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-12-17armemu: Implement REVSHNormmatt
2014-12-17armemu: Fix UXTAB/UXTAHNormmatt
2014-12-17armemu: Fix SXTABNormmatt
2014-12-17armemu: Fix SXTAHNormmatt
2014-12-17Merge pull request #289 from lioncash/smopsbunnei
Join SMUAD, SMUSD, and SMLAD ops. Also fix them as well.
2014-12-16Merge pull request #290 from lioncash/vsubbunnei
armemu: Backport some VFP fixes from 3dmoo.
2014-12-16armemu: Fix FTOUI NaN sign.Normmatt
2014-12-16armemu: Fix FSUBS bug where NaN shouldn't be negatedNormmatt
2014-12-16armemu: Fix SMUAD, SMUSD, and SMLADLioncash
Wrong values were being multiplied together.
2014-12-16armemu: Join SMUAD, SMUSD, and SMLADLioncash
2014-12-15Merge pull request #286 from yuriks/msvc-fixbunnei
Comment out empty arrays causing compile errors in MSVC
2014-12-16Comment out empty arrays causing compile errors in MSVCYuri Kunde Schlesner
2014-12-15Merge pull request #285 from lioncash/uxtab16bunnei
armemu: Implement UXTAB16
2014-12-15Merge pull request #283 from yuriks/archive-refactorbunnei
Archive refactor
2014-12-16Work around libstdc++'s lack of support for std::hash on enumsYuri Kunde Schlesner
2014-12-16FS.Archive: Clean up treatment of archives and their handlesYuri Kunde Schlesner
- Refactor FS::Archive internals to make Archive creation and lifetime management clearer. - Remove the "Archive as a File" hack. - Implement 64-bit Archive handles.
2014-12-16Service.FS: Rename FileSys::File to FileBackendYuri Kunde Schlesner
2014-12-16Service.FS: Rename FileSys::Directory to DirectoryBackendYuri Kunde Schlesner
2014-12-16Service.FS: Rename FileSys::Archive to ArchiveBackendYuri Kunde Schlesner
2014-12-16Service.FS: Do archive registration using IdCode instead of nameYuri Kunde Schlesner
2014-12-16HLE: Rename namespaces to match move & fix initialization orderYuri Kunde Schlesner
2014-12-16HLE: Move kernel/archive.* to service/fs/Yuri Kunde Schlesner
2014-12-16Switch to C++14 to use std::make_uniqueYuri Kunde Schlesner
2014-12-15armemu: Implement UXTAB16Lioncash
2014-12-16Update README.mdTony Wasserka
Fix spelling mistakes.
2014-12-16More Readme updates.Tony Wasserka
2014-12-16Provide a direct webchat link to #citra in the ReadmeTony Wasserka
2014-12-16Update donation infoTony Wasserka
2014-12-15Update README.mdbunnei
2014-12-15Merge pull request #282 from archshift/servicesbunnei
Added stubs for ldr:ro, cecd:u, nim:aoc, and am:app services
2014-12-15Travis: Use gcc 4.9 instead of 4.8 since it's getting installed anywayYuri Kunde Schlesner
2014-12-15Travis: Enable tracing on the script to ease troubleshootingYuri Kunde Schlesner
2014-12-15Merge pull request #281 from lioncash/uxtb16bunnei
armemu: Fix UXTB16
2014-12-15Merge pull request #279 from yuriks/sessionbunnei
Remove SyncRequest from K::Object and create a new K::Session type
2014-12-15Added stub for nim:aoc service...archshift
2014-12-15Added stub for cecd:u service...archshift
I couldn't find any information about this service...
2014-12-15Added stub for ldr:ro service...archshift
2014-12-15Added am:app service stub.archshift
Apparently nothing at all is known about this service...
2014-12-15Remove SyncRequest from K::Object and create a new K::Session typeYuri Kunde Schlesner
This is a first step at fixing the conceptual insanity that is our handling of service and IPC calls. For now, interfaces still directly derived from Session because we don't have the infrastructure to do it properly. (That is, Processes and scheduling them.)
2014-12-14armemu: Fix UXTB16Lioncash
Rotation bits are 10 and 11, not 9 and 10.
2014-12-14Merge pull request #276 from lioncash/decrappifybunnei
Clean up armdefs.h a little.
2014-12-14Merge pull request #246 from Subv/cbranch_1bunnei
SVC: Implemented Semaphores
2014-12-14Merge pull request #273 from bunnei/more-skyeye-fixesbunnei
ARM: Pull some SkyEye fixes from 3dmoo.
2014-12-14ARM: Pull some SkyEye fixes from 3dmoo.bunnei
2014-12-14Merge pull request #257 from lioncash/gitignoreTony Wasserka
Update gitignore with OS-specific global filetypes.
2014-12-14Update gitignore with OS-specific global filetypes.Lioncash
2014-12-14Clean up armdefs.hLioncash
2014-12-14Merge pull request #278 from yuriks/log-colorsbunnei
Restore the original console color after logging a message.
2014-12-14Restore the original console color after logging a message.Yuri Kunde Schlesner
Fixes #277
2014-12-13Kernel/Semaphores: Fixed buildSubv