aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
Commit message (Collapse)AuthorAge
...
* | | | | Merge pull request #983 from yuriks/null-memory-fillGravatar Yuri Kunde Schlesner2015-07-23
|\ \ \ \ \ | | | | | | | | | | | | GSP: Don't try to write memory fill registers if start address is 0
| * | | | | GSP: Don't try to write memory fill registers if start address is 0Gravatar Yuri Kunde Schlesner2015-07-23
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | Verified to be what GSP does via REing. Fixes invalid virt->phys translation error spam in some games.
* / | | | Qt/GPU Breakpoints: Added three more breakpoint types:Gravatar Subv2015-07-23
|/ / / / | | | | | | | | | | | | | | | | | | | | * IncomingDisplayTransfer: Triggered just before a display transfer is performed. * GSPCommandProcessed: Triggered right after a GSP command is processed. * BufferSwapped: Triggered when the frames flip
* | | | Merge pull request #962 from Subv/am_appGravatar bunnei2015-07-21
|\ \ \ \ | | | | | | | | | | Services/AM: Stubbed am:app::GetNumContentInfos to return 0 results.
* \ \ \ \ Merge pull request #966 from Subv/logGravatar bunnei2015-07-21
|\ \ \ \ \ | | | | | | | | | | | | Services/Logging: Log more useful information when some operations fail.
| * | | | | Services/Logging: Log more useful information when some operations fail.Gravatar Subv2015-07-21
| | | | | | | | | | | | | | | | | | | | | | | | Namely OpenFileDirectly, OpenDirectory and OpenArchive
* | | | | | Merge pull request #957 from Subv/hwtest_crashGravatar bunnei2015-07-21
|\ \ \ \ \ \ | | | | | | | | | | | | | | Kernel/Scheduling: Clean up a thread's wait_objects when its scheduled.
* | | | | | | dyncom: Pass SVC immediates directly.Gravatar Lioncash2015-07-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously it would just re-read the already decoded instruction and extract the immediate value.
| | | * | | | Services/AM: Stubbed am:app::GetNumContentInfos to return 0 results.Gravatar Subv2015-07-21
| | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Named the service functions in am:app as per 3dbrew. This fixes an illegal read loop in Steel Diver
* | / / / / Services/CFG: Added some missing functions to cfg:sGravatar Subv2015-07-20
| |/ / / / |/| | | |
| * | | | Kernel/Scheduling: Clean up a thread's wait_objects when its scheduled.Gravatar Subv2015-07-20
|/ / / / | | | | | | | | | | | | They'll be reset if needed during the next svcWaitSynchronization call (if there's any pending)
* | | | Merge pull request #939 from Subv/queryprocmemGravatar bunnei2015-07-20
|\ \ \ \ | | | | | | | | | | Kernel/SVC: Implemented svcQueryProcessMemory
* \ \ \ \ Merge pull request #951 from Subv/bit5Gravatar bunnei2015-07-19
|\ \ \ \ \ | | | | | | | | | | | | GPU/DisplayTransfer: Implemented bit 5 in the transfer flags.
* \ \ \ \ \ Merge pull request #946 from archshift/update-frduGravatar bunnei2015-07-19
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add more frd:u unknown service commands from 3dbrew
| | | | | | * SOC:U : Update deprecated function gethostbyname() to getaddrinfo()Gravatar zawata2015-07-19
| | | | | | |
| | * | | | | GPU/DisplayTransfer: Implemented bit 5 in the transfer flags.Gravatar Subv2015-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | It tells the GPU to not swizzle/de-swizzle the input during the transfer.
* | | | | | | dyncom: Properly retrieve the PC value in BX if used.Gravatar Lioncash2015-07-19
| |/ / / / / |/| | | | |
* | | | | | Change trace/unimplemented service call logs to use hexGravatar archshift2015-07-19
| | | | | | | | | | | | | | | | | | | | | | | | Changes the log to use hex in the parameter list instead of decimal.
| * | | | | Add more frd:u unknown service commands from 3dbrewGravatar archshift2015-07-19
|/ / / / /
| | * | | Core : Change variable typeGravatar zawata2015-07-19
| | | | | | | | | | | | | | | | | | | | and fix various warnings
| | * | | Core : Fix Conversion WarningsGravatar zawata2015-07-19
| |/ / / |/| | |
* | | | Dyncom: Support for a missing ARMv6 Thumb MOV encodingGravatar Yuri Kunde Schlesner2015-07-18
| | | |
| * | | Kernel/SVC: Implemented svcQueryProcessMemoryGravatar Subv2015-07-17
|/ / /
* | | Merge pull request #938 from Subv/querymemGravatar Yuri Kunde Schlesner2015-07-17
|\ \ \ | | | | | | | | Kernel/SVC: Implemented svcQueryMemory.
| * | | Kernel/SVC: Implemented svcQueryMemory.Gravatar Subv2015-07-17
| | | |
* | | | Merge pull request #937 from yuriks/codeset-leakGravatar bunnei2015-07-17
|\ \ \ \ | |/ / / |/| | | Ensure all kernel objects are released during shutdown
| | * | Core\HLE : Fix WarningGravatar zawata2015-07-17
| | |/ | | | | | | | | | "signed/unsigned mismatch"
| * | Ensure all kernel objects are released during shutdownGravatar Yuri Kunde Schlesner2015-07-17
| | | | | | | | | | | | | | | | | | | | | | | | This commit fixes several kernel object leaks. The most severe of them was threads not being removed from the private handle table used for CoreTiming events. This resulted in Threads never being released, which in turn held references to Process, causing CodeSets to never be freed when loading other applications.
* | | arm_dyncom_interpreter: Simplify assignment in SMLAWGravatar Lioncash2015-07-16
|/ / | | | | | | Also a side-benefit of not having implementation-defined behavior.
* | Merge pull request #918 from yuriks/romfsGravatar bunnei2015-07-16
|\ \ | | | | | | Do not load entire RomFS to memory, read from the file as needed instead (rebased)
* \ \ Merge pull request #904 from aroulin/y2r-narrowing-warningGravatar archshift2015-07-13
|\ \ \ | | | | | | | | Y2R: Fix narrowing warning
| | * | Loader: Fix variable type and remove unused variableGravatar Yuri Kunde Schlesner2015-07-13
| | | |
| | * | Archive: Correct a few incorrect types in function signaturesGravatar Yuri Kunde Schlesner2015-07-13
| | | | | | | | | | | | | | | | Buffer lengths should be size_t, and file offsets should be u64.
| | * | Loader: Remove unnecessary pointer indirection to IOFileGravatar Yuri Kunde Schlesner2015-07-13
| | | |
| | * | FS: Stream RomFS from file instead of loading all of it to memoryGravatar condut2015-07-13
| |/ / |/| |
* | | CiTrace: Clean up initialization method.Gravatar Tony Wasserka2015-07-13
| | |
* | | CiTrace: Record default vertex attributes.Gravatar Tony Wasserka2015-07-13
| | |
* | | Add CiTrace recording support.Gravatar Tony Wasserka2015-07-13
| | | | | | | | | | | | | | | | | | This is exposed in the GUI as a new "CiTrace Recording" widget. Playback is implemented by a standalone 3DS homebrew application (which only runs reliably within Citra currently; on an actual 3DS it will often crash still).
* | | GPU: Be robust against nullptr addresses; properly reset busy bits in the ↵Gravatar Tony Wasserka2015-07-13
| | | | | | | | | | | | trigger registers.
* | | HW: Fix a stupid issue which led to unknown register reads/writes.Gravatar Tony Wasserka2015-07-13
| | |
* | | Merge pull request #921 from linkmauve/fix-appletGravatar bunnei2015-07-12
|\ \ \ | | | | | | | | Fix applet includes using iwyu
* | | | Kernel: Add CodeSet case to Object::IsWaitableGravatar Yuri Kunde Schlesner2015-07-12
| | | |
| * | | Core: Fix applet includes using iwyu.Gravatar Emmanuel Gil Peyrot2015-07-12
|/ / /
| * / Y2R: Fix narrowing warningGravatar aroulin2015-07-12
|/ /
* | Merge pull request #823 from Subv/applets_drawingGravatar bunnei2015-07-11
|\ \ | | | | | | Library applet support (swkbd for now)
| * | Applets: Reworked how the Applet update event is handled.Gravatar Subv2015-07-11
| | | | | | | | | | | | Applets are now cleaned up in AppletUpdateEvent after calling their respective Update method.
* | | Core: Properly configure address space when loading a binaryGravatar Yuri Kunde Schlesner2015-07-11
| | | | | | | | | | | | | | | | | | The code now properly configures the process image to match the loaded binary segments (code, rodata, data) instead of just blindly allocating a large chunk of dummy memory.
* | | Memory: Fix unmapping of pagesGravatar Yuri Kunde Schlesner2015-07-11
| | |
* | | Loader: Clean up 3dsx loader a bit, fixing a potential buffer overrunGravatar Yuri Kunde Schlesner2015-07-11
| | |
* | | Loader: Make 3dsx loader logs a bit less confusingGravatar Yuri Kunde Schlesner2015-07-11
| | |