summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Archives/Exdata: Don't set concrete_mount_point in the ctorGravatar Subv2015-01-061-1/+1
| | |
| * | Archives: Changed the unimplemented archives comment.Gravatar Subv2015-01-061-1/+1
| | | | | | | | | | | | It now refers to me as the PoC
| * | Archives: Addressed some commentsGravatar Subv2015-01-065-15/+15
| | |
| * | SaveDataCheck: Fixed a typoGravatar Subv2015-01-051-1/+1
| | |
| * | Archives: Make SYSTEM_ID and SDCARD_ID stringsGravatar Subv2015-01-046-9/+11
| | |
| * | Archives: Changed the way paths are built for the archives.Gravatar Subv2015-01-0310-27/+64
| | | | | | | | | | | | Each archive now takes a mount point of either NAND or SDMC, and builds its own directory structure there, trying to simulate an HLE-friendly hardware layout
| * | SaveDataCheck: Move the files to nand/titleGravatar Subv2015-01-031-1/+2
| | | | | | | | | | | | under /nand/title/high/low/content/00000000.app.romfs
| * | Archives: Change the folder layout of some archives.Gravatar Subv2015-01-023-4/+3
| | | | | | | | | | | | This is to better represent the hardware layout, they are still aren't quite accurate, but this better and will help a bit when implementing the other archives like NAND-RO and NAND-RW
* | | Merge pull request #417 from kevinhartman/exclusive-tag-fixGravatar bunnei2015-01-062-16/+18
|\ \ \ | | | | | | | | Added exclusive reservation granule from ARMv7 spec to dyncom...
| * | | Added exclusive reservation granule from ARMv7 spec to dyncom to protect ↵Gravatar Kevin Hartman2015-01-052-16/+18
| | | | | | | | | | | | | | | | LDR/STREX.
* | | | Merge pull request #413 from purpasmart96/serv_cleanGravatar bunnei2015-01-057-33/+36
|\ \ \ \ | | | | | | | | | | Services: Clean up a few things and add a few function names
| * | | | Services: Clean up a few things and add a few function namesGravatar purpasmart962015-01-057-33/+36
| | | | |
* | | | | Merge pull request #272 from rohit-n/sign-compareGravatar bunnei2015-01-051-4/+4
|\ \ \ \ \ | |_|_|_|/ |/| | | | Silence some -Wsign-compare warnings.
| * | | | Silence some -Wsign-compare warnings.Gravatar Rohit Nirmal2015-01-011-4/+4
| |/ / /
* | | | Merge pull request #422 from lioncash/bxjGravatar bunnei2015-01-051-8/+25
|\ \ \ \ | | | | | | | | | | dyncom: Partially emulate BXJ
| * | | | dyncom: Partially emulate BXJGravatar Lioncash2015-01-051-8/+25
| | | | | | | | | | | | | | | | | | | | Just in case some game studio let the intern write inline assembly or something.
* | | | | Merge pull request #416 from bunnei/fake-dsp-interruptGravatar bunnei2015-01-053-5/+28
|\ \ \ \ \ | |/ / / / |/| | | | DSP: Signal (faked) interrupt on every frame.
| * | | | DSP: Signal (faked) interrupt on every frame.Gravatar bunnei2015-01-053-5/+28
| | | | | | | | | | | | | | | | | | | | - Hack to work around games checking that the DSP event has been signaled by a real DSP interrupt.
* | | | | dyncom: Actually set the Q flag for SMLABB/SMLABT/SMLATB/SMLATTGravatar Lioncash2015-01-051-1/+2
| | | | | | | | | | | | | | | | | | | | Easy skyeye todo fix.
* | | | | Merge pull request #418 from lioncash/qdGravatar bunnei2015-01-054-25/+117
|\ \ \ \ \ | |/ / / / |/| | | | dyncom: Implement QADD/QSUB/QDADD/QDSUB
| * | | | dyncom: Implement QADD/QSUB/QDADD/QDSUBGravatar Lioncash2015-01-054-25/+117
| | | | |
* | | | | Merge pull request #407 from Subv/arbiterGravatar bunnei2015-01-051-0/+11
|\ \ \ \ \ | | | | | | | | | | | | AddressArbiter: Ported arbitration type 2 from 3dmoo.
| * | | | | AddressArbiter: Ported arbitration type 2 from 3dmoo.Gravatar Subv2015-01-031-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | (Thanks 3dmoo!)
* | | | | | Merge pull request #415 from Dante38490/masterGravatar bunnei2015-01-041-0/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | Loader: Add support for loading NCCH ROMs with the .3DS extension
| * | | | | | Fix correct espaceGravatar Dante384902015-01-051-2/+2
| | | | | | |
| * | | | | | Add support load 3DS roomGravatar Dante384902015-01-051-0/+2
| | | | | | |
* | | | | | | Merge pull request #408 from Subv/mutexGravatar bunnei2015-01-041-2/+2
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Mutex: Add the calling thread to the waiting list when needed
| * | | | | | Mutex: Add the calling thread to the waiting list when neededGravatar Subv2015-01-041-2/+2
| | |/ / / / | |/| | | | | | | | | | | | | | | | This will happen when the mutex is already owned by another thread. Should fix some issues with games being stuck due to waiting threads not being awoken.
* | | | | | Merge pull request #386 from archshift/y2ruGravatar bunnei2015-01-044-0/+72
|\ \ \ \ \ \ | | | | | | | | | | | | | | Stub the y2r:u service
| * | | | | | Stub the y2r:u serviceGravatar archshift2015-01-034-0/+72
| | | | | | |
* | | | | | | skyeye: Remove duplicate typedefsGravatar Lioncash2015-01-044-41/+17
| |/ / / / / |/| | | | | | | | | | | | | | | | | citra already has its own typedefs like this.
* | | | | | FileSys: Fix crash bug in DiskFile exposed by #400Gravatar Yuri Kunde Schlesner2015-01-031-4/+0
| | | | | |
* | | | | | FileSys: Fix a few memory leaksGravatar Yuri Kunde Schlesner2015-01-032-6/+7
| | | | | |
* | | | | | Merge pull request #396 from bunnei/default-dyncomGravatar bunnei2015-01-032-3/+3
|\ \ \ \ \ \ | | | | | | | | | | | | | | Core: Change default CPU to dyncom.
| * | | | | | Core: Change default CPU to dyncom.Gravatar bunnei2015-01-022-3/+3
| | |_|_|_|/ | |/| | | |
* | | | | | Merge pull request #398 from lioncash/smGravatar bunnei2015-01-031-1/+43
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | dyncom: Implement SMLAW
| * | | | | dyncom: Implement SMLAWGravatar Lioncash2015-01-031-1/+43
| | |_|/ / | |/| | |
* / | | | VFP: Minor cleanup, functionally the same.Gravatar bunnei2015-01-031-2587/+2476
|/ / / /
* | | | Merge pull request #395 from lioncash/revGravatar bunnei2015-01-021-45/+45
|\ \ \ \ | | | | | | | | | | dyncom: Implement REVSH
| * | | | dyncom: Implement REVSHGravatar Lioncash2015-01-021-45/+45
| |/ / / | | | | | | | | | | | | Also joins the REV ops into one common place.
* / / / dyncom: Implement SMLALD/SMLSLDGravatar Lioncash2015-01-021-3/+72
|/ / /
* | | Merge pull request #381 from Subv/savedatacheckGravatar bunnei2015-01-0214-319/+275
|\ \ \ | | | | | | | | Implemented the SaveDataCheck archive
| * | | IVFCArchive: Use a critical log to notify of invalid operations.Gravatar Subv2015-01-021-9/+9
| | | |
| * | | SaveDataCheck: Remove unneeded constructor from a classGravatar Subv2015-01-021-2/+0
| | | |
| * | | Archives: Added some documentation to IVFCArchiveGravatar Subv2015-01-021-0/+5
| | | |
| * | | Archives: Reduced duplicate code in RomFS and SaveCheck.Gravatar Subv2015-01-0214-341/+238
| | | | | | | | | | | | | | | | Fixed a few warnings and cleaned up the code
| * | | SaveDataCheck: Preliminary work in this archive.Gravatar Subv2015-01-024-7/+63
| | | | | | | | | | | | | | | | | | | | | | | | This allows Steel Diver to boot further, some files are needed. This is still not ready and needs a big cleanup, this will possibly be delayed until the way we handle archives is fixed (with factory classes instead of ahead-of-time creation of archives)
* | | | Merge pull request #392 from lioncash/smGravatar bunnei2015-01-021-3/+64
|\ \ \ \ | |/ / / |/| | | dyncom: Implement SMMLA/SMMUL/SMMLS
| * | | dyncom: Implement SMMLA/SMMUL/SMMLSGravatar Lioncash2015-01-021-3/+64
| | | |
* | | | Merge pull request #391 from lioncash/pedanticGravatar bunnei2015-01-022-4/+4
|\ \ \ \ | | | | | | | | | | archive/elf: Minor misc changes.