aboutsummaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2016-05-24Merge pull request #1520 from JamePeng/checknew3dsbunnei
Implement CheckNew3DS and CheckNew3DSApp
2016-05-21Loader: Split SMDH into its own header and import helpers from QGameListEmmanuel Gil Peyrot
Also rewrite Qt wrappers to use those.
2016-05-21CFG: Remove use of Memory::GetPointerMerryMage
2016-05-21APT: Remove use of Memory::GetPointerMerryMage
2016-05-21Kernel/Thread: Remove use of Memory::GetPointerMerryMage
2016-05-21Applets/swkdb: Remove use of Memory::GetPointerMerryMage
2016-05-21Memory: ZeroBlockMerryMage
2016-05-21FileSys/Path: Replace Memory::GetPointer with Memory::ReadBlockMerryMage
2016-05-21Memory: ReadBlock/WriteBlockMerryMage
2016-05-21Memory: IsValidVirtualAddress/IsValidPhysicalAddressMerryMage
2016-05-21CitraQt: Simplify the game list loader codeEmmanuel Gil Peyrot
2016-05-21Loader: Add a GetFileType method to get the type of a loaded fileEmmanuel Gil Peyrot
2016-05-21Loader, Frontends: Refactor loader creation and game loadingEmmanuel Gil Peyrot
This allows frontends to keep a single loader and use it multiple times e.g. for code loading and SMDH parsing.
2016-05-21SVC::WaitSynchronizationN: Reschedule at the endwwylele
2016-05-18Remove `exceptions` parameter from `normaliseround` VFP functionsJannik Vogel
2016-05-18Fix exception propagation for VFP single precisionJannik Vogel
2016-05-18Fix exception propagation for VFP double precisionJannik Vogel
2016-05-18Fix read-after-write in SMUAD, SMLAD, SMUSD, SMLSDJannik Vogel
2016-05-17Update ACT:U and create ACT:A (#1809)András Domonkos
* Update ACT_U * Create act_a.h * Create act_a.cpp * Add service ACT:A * Add ACT:A source and header * Fix wrong header
2016-05-17Merge pull request #1800 from JayFoxRox/set-fpscrbunnei
Set fpscr for new threads
2016-05-17Set fpscr for new threadsJannik Vogel
2016-05-16Fix ftoi behaviourJannik Vogel
2016-05-16Respect fpscr in ftoizJannik Vogel
2016-05-16Disable VFP3 instructionsJannik Vogel
2016-05-15DSP_DSP: Remove GetHeadphoneStatus logspam (#1799)Maribel
2016-05-15fixup! fixup! Refactor input systemwwylele
2016-05-15implement circle pad modifierwwylele
2016-05-15Refactor input subsystemwwylele
2016-05-14Memory: Fixed a regression caused by #1695 and #1689.Subv
Reserve enough space in the vector that holds the linear heap memory to prevent relocations of the backing memory when growing too much. Closes #1790
2016-05-13Merge pull request #1689 from Subv/shmembunnei
Kernel: Implemented shared memory.
2016-05-12Merge pull request #1695 from Subv/tls_allocbunnei
Kernel/Threads: Dynamically allocate the TLS region for threads.
2016-05-12HLE/Applets: Give each applet its own block of heap memory, and use that ↵Subv
when creating the framebuffer shared memory block.
2016-05-12Kernel: Account for automatically-allocated shared memories in the amount of ↵Subv
used linear heap memory.
2016-05-12APT: Move the shared font loading and relocation functions to their own ↵Subv
subdirectory services/apt/bcfnt.
2016-05-12Kernel/SharedMemory: Log an error when Map fails.Subv
2016-05-12Kernel: Implemented shared memory permissions.Subv
2016-05-12APT: Implement relocating the shared font to its true address.Subv
2016-05-12Kernel/Memory: Remove the Shared Memory region from the legacy memory map.Subv
2016-05-12Kernel/SharedMemory: Properly implemented shared memory support.Subv
Applications can request the kernel to allocate a piece of the linear heap for them when creating a shared memory object. Shared memory areas are now properly mapped into the target processes when calling svcMapMemoryBlock. Removed the APT Shared Font hack as it is no longer needed.
2016-05-12Kernel/SVC: Fixed the register order for svcCreateMemoryBlock.Subv
R0 is used as the last parameter instead of R4.
2016-05-10gdbstub: Silence missing prototype warningsLioncash
2016-05-09dyncom: Reset the context into user mode correctlyLioncash
The other mode was system mode.
2016-05-08Merge pull request #1766 from Subv/log_cpubunnei
Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1)
2016-05-07Merge pull request #1718 from alex-laties/fixup-type-conversionsbunnei
fixup simple type conversions where possible
2016-05-07Merge pull request #1761 from Subv/applets_fbbunnei
HLE/Applets: Use the correct size for the framebuffer SharedMemory
2016-05-07fixup simple type conversions where possibleAlexander Laties
2016-05-07Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1).Subv
We do not currently implement any cores other than the AppCore (Core 0).
2016-05-07Kernel/Threads: Dynamically allocate the TLS region for threads in the BASE ↵Subv
region of the linear heap. Each thread gets a 0x200-byte area from the 0x1000-sized page, when all 8 thread slots in a single page are used up, the kernel allocates a new page to hold another 8 entries. This is consistent with what the real kernel does.
2016-05-07HLE/Applets: Use the correct size for the framebuffer SharedMemory in the ↵Subv
swkbd and MiiSelector applets.
2016-05-06fix:return proper errorwwylele