aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
* armemu: Fix SADD16Gravatar Lioncash2014-12-17
| | | | 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.
* Merge pull request #289 from lioncash/smopsGravatar bunnei2014-12-17
|\ | | | | Join SMUAD, SMUSD, and SMLAD ops. Also fix them as well.
* \ Merge pull request #290 from lioncash/vsubGravatar bunnei2014-12-16
|\ \ | | | | | | armemu: Backport some VFP fixes from 3dmoo.
| * | armemu: Fix FTOUI NaN sign.Gravatar Normmatt2014-12-16
| | |
| * | armemu: Fix FSUBS bug where NaN shouldn't be negatedGravatar Normmatt2014-12-16
| | |
| | * armemu: Fix SMUAD, SMUSD, and SMLADGravatar Lioncash2014-12-16
| | | | | | | | | | | | Wrong values were being multiplied together.
| | * armemu: Join SMUAD, SMUSD, and SMLADGravatar Lioncash2014-12-16
| |/
* | Merge pull request #286 from yuriks/msvc-fixGravatar bunnei2014-12-15
|\ \ | | | | | | Comment out empty arrays causing compile errors in MSVC
| * | Comment out empty arrays causing compile errors in MSVCGravatar Yuri Kunde Schlesner2014-12-16
| | |
* | | Merge pull request #285 from lioncash/uxtab16Gravatar bunnei2014-12-15
|\ \ \ | |/ / |/| | armemu: Implement UXTAB16
* | | Merge pull request #283 from yuriks/archive-refactorGravatar bunnei2014-12-15
|\ \ \ | | | | | | | | Archive refactor
| * | | Work around libstdc++'s lack of support for std::hash on enumsGravatar Yuri Kunde Schlesner2014-12-16
| | | |
| * | | FS.Archive: Clean up treatment of archives and their handlesGravatar Yuri Kunde Schlesner2014-12-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Refactor FS::Archive internals to make Archive creation and lifetime management clearer. - Remove the "Archive as a File" hack. - Implement 64-bit Archive handles.
| * | | Service.FS: Rename FileSys::File to FileBackendGravatar Yuri Kunde Schlesner2014-12-16
| | | |
| * | | Service.FS: Rename FileSys::Directory to DirectoryBackendGravatar Yuri Kunde Schlesner2014-12-16
| | | |
| * | | Service.FS: Rename FileSys::Archive to ArchiveBackendGravatar Yuri Kunde Schlesner2014-12-16
| | | |
| * | | Service.FS: Do archive registration using IdCode instead of nameGravatar Yuri Kunde Schlesner2014-12-16
| | | |
| * | | HLE: Rename namespaces to match move & fix initialization orderGravatar Yuri Kunde Schlesner2014-12-16
| | | |
| * | | HLE: Move kernel/archive.* to service/fs/Gravatar Yuri Kunde Schlesner2014-12-16
| | | |
| | * | armemu: Implement UXTAB16Gravatar Lioncash2014-12-15
| | |/
* | | Merge pull request #282 from archshift/servicesGravatar bunnei2014-12-15
|\ \ \ | |_|/ |/| | Added stubs for ldr:ro, cecd:u, nim:aoc, and am:app services
* | | Merge pull request #281 from lioncash/uxtb16Gravatar bunnei2014-12-15
|\ \ \ | |_|/ |/| | armemu: Fix UXTB16
| | * Added stub for nim:aoc service...Gravatar archshift2014-12-15
| | |
| | * Added stub for cecd:u service...Gravatar archshift2014-12-15
| | | | | | | | | | | | I couldn't find any information about this service...
| | * Added stub for ldr:ro service...Gravatar archshift2014-12-15
| | |
| | * Added am:app service stub.Gravatar archshift2014-12-15
| | | | | | | | | | | | Apparently nothing at all is known about this service...
* | | Remove SyncRequest from K::Object and create a new K::Session typeGravatar Yuri Kunde Schlesner2014-12-15
| |/ |/| | | | | | | | | | | 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.)
| * armemu: Fix UXTB16Gravatar Lioncash2014-12-14
|/ | | | Rotation bits are 10 and 11, not 9 and 10.
* Merge pull request #276 from lioncash/decrappifyGravatar bunnei2014-12-14
|\ | | | | Clean up armdefs.h a little.
* \ Merge pull request #246 from Subv/cbranch_1Gravatar bunnei2014-12-14
|\ \ | | | | | | SVC: Implemented Semaphores
* \ \ Merge pull request #273 from bunnei/more-skyeye-fixesGravatar bunnei2014-12-14
|\ \ \ | | | | | | | | ARM: Pull some SkyEye fixes from 3dmoo.
| * | | ARM: Pull some SkyEye fixes from 3dmoo.Gravatar bunnei2014-12-14
| | | |
| | | * Clean up armdefs.hGravatar Lioncash2014-12-14
| | | |
* | | | Restore the original console color after logging a message.Gravatar Yuri Kunde Schlesner2014-12-14
| |_|/ |/| | | | | | | | Fixes #277
| | * Kernel/Semaphores: Fixed buildGravatar Subv2014-12-13
| | |
| | * Kernel/Semaphore: Small style changeGravatar Subv2014-12-13
| | |
| | * Kernel/Semaphores: Invert the available count checking.Gravatar Subv2014-12-13
| | | | | | | | | | | | Same semantics, idea by @yuriks
| | * Kernel/Semaphores: Addressed some issues.Gravatar Subv2014-12-13
| | |
| | * Semaphore: Removed an unneeded functionGravatar Subv2014-12-13
| | |
| | * Semaphores: Addressed some style issuesGravatar Subv2014-12-13
| | |
| | * Semaphore: Implemented the initial_count parameter.Gravatar Subv2014-12-13
| | |
| | * SVC: Implemented ReleaseSemaphore.Gravatar Subv2014-12-13
| | | | | | | | | | | | This behavior was tested on hardware, however i'm still not sure what use the "initial_count" parameter has
| | * SVC: Implemented svcCreateSemaphoreGravatar Subv2014-12-13
| |/ |/| | | | | | | ToDo: Implement svcReleaseSemaphore * Some testing against hardware needed
* | kernel: Remove unused log argumentsGravatar Lioncash2014-12-13
|/
* Remove old logging systemGravatar Yuri Kunde Schlesner2014-12-13
|
* Add configurable per-class log filteringGravatar Yuri Kunde Schlesner2014-12-13
|
* Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner2014-12-13
|
* Implement text path trimming for shorter paths.Gravatar Yuri Kunde Schlesner2014-12-13
|
* Re-add coloring to the console logging output.Gravatar Yuri Kunde Schlesner2014-12-13
|
* New logging systemGravatar Yuri Kunde Schlesner2014-12-13
|