aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
* citra-qt: Add pica framebuffer widget.Gravatar Tony Wasserka2014-12-09
|
* citra_qt: Add enhanced texture debugging widgets.Gravatar Tony Wasserka2014-12-09
| | | | Double-clicking a texture parameter command in the pica command lists will spawn these as a new tab in the pica command list dock area.
* citra-qt: Add texture viewer to Pica command list.Gravatar Tony Wasserka2014-12-09
| | | | The texture viewer is enabled when selecting a write command to one of the texture config registers.
* Add GUI widget for controlling pica breakpoints.Gravatar Tony Wasserka2014-12-09
|
* Pica/DebugUtils: Add breakpoint functionality.Gravatar Tony Wasserka2014-12-09
|
* citra-qt: Polish the pica tracing widget.Gravatar Tony Wasserka2014-12-09
| | | | | Changed start/stop button to reflect current tracing status. Properly labeled column headers.
* citra-qt: Add a utility spinbox class called CSpinBox.Gravatar Tony Wasserka2014-12-09
| | | | | | | This class has a few advantages over the regular QSpinBox: - QSpinBox stores its as signed 32 bit integers, which for instance is unsuitable for representing memory addresses. CSpinBox uses 64 bit integers instead. - QSpinBox does not provide an easy way to handle number input from bases different than 10. - QSpinBox is quite inflexible in general and almost any sort of customization requires reimplementing it anyway.
* Build fix for something which shouldn't have compiled successfully to begin ↵Gravatar Tony Wasserka2014-12-09
| | | | with.
* Fix some headers to include their dependencies properly.Gravatar Tony Wasserka2014-12-09
|
* Merge pull request #217 from archshift/cmd_buffGravatar bunnei2014-12-08
|\ | | | | Log the cmd_buff arguments when citra comes across an unimplemented function
* | Thread: Fixed to wait on address when in arbitration.Gravatar bunnei2014-12-08
| |
* | Merge pull request #244 from bunnei/cleanup-memmapGravatar bunnei2014-12-08
|\ \ | | | | | | MemMap: Updated memory map to subtract base address instead of mask.
* \ \ Merge pull request #263 from lioncash/sasxGravatar bunnei2014-12-08
|\ \ \ | | | | | | | | Fix emulation of SASX and SSAX instructions.
* \ \ \ Merge pull request #259 from ichfly/masterGravatar bunnei2014-12-08
|\ \ \ \ | | | | | | | | | | Loader: Add 3DSX support
* \ \ \ \ Merge pull request #264 from Subv/filesGravatar bunnei2014-12-08
|\ \ \ \ \ | | | | | | | | | | | | Kernel/File: Fixed file read/write hwtests
* \ \ \ \ \ Merge pull request #260 from archshift/opendirGravatar bunnei2014-12-08
|\ \ \ \ \ \ | | | | | | | | | | | | | | Make OpenDirectory fail if the directory doesn't exist
| | * | | | | Kernel/File: Fixed file read/write hwtestsGravatar Subv2014-12-08
| |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | The 3DS allows the user to read from files opened with the Write access modifier, even if he did not specify the Read access modifier. Open the files in binary mode so that we can prevent CR/LF problems in Windows, where a line-end is replaced by these two bytes instead of just 0xA, this was causing problems with the GetSize test
| | | * | | armemu: Fix SSAXGravatar Lioncash2014-12-08
| | | | | |
| | * | | | Loader: Add 3DSX supportGravatar ichfly2014-12-08
| |/ / / / |/| | | |
| | * | | armemu: Fix SASXGravatar Lioncash2014-12-08
| | | | |
| | * | | armemu: Fix parenthesis warnings regarding bitwise opsGravatar Lioncash2014-12-07
| |/ / / |/| | |
| * | | Make OpenDirectory fail if the directory doesn't existGravatar archshift2014-12-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is in line with what the hardware itself does. It does this by splitting the initial directory opening into Directory.Open(), which will return false if a stat fails. Then, Archive::OpenDirectory will return nullptr, and archive.cpp will return an error code .
* | | | Merge pull request #245 from rohit-n/null-nullptrGravatar bunnei2014-12-07
|\ \ \ \ | |/ / / |/| | | Change NULLs to nullptrs.
* | | | Merge pull request #250 from Subv/cbranch_2Gravatar bunnei2014-12-04
|\ \ \ \ | | | | | | | | | | SVC: Implemented GetThreadId.
* \ \ \ \ Merge pull request #222 from archshift/renamexyzGravatar bunnei2014-12-04
|\ \ \ \ \ | | | | | | | | | | | | Implemented RenameFile and RenameDirectory in FS:USER
* \ \ \ \ \ Merge pull request #248 from lioncash/kernelGravatar bunnei2014-12-04
|\ \ \ \ \ \ | | | | | | | | | | | | | | Misc minor kernel-related changes.
| | | * | | | Threads: Remove a redundant function.Gravatar Subv2014-12-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Use the next_thread_id variable directly.
| | | * | | | Threads: Implemented a sequential thread idGravatar Subv2014-12-04
| | | | | | |
| | * | | | | Updated archive.cpp functions for proper error handlingGravatar archshift2014-12-03
| | | | | | |
| | | * | | | SVC: Implemented GetThreadId.Gravatar Subv2014-12-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | For now threads are using their Handle value as their Id, it should not really cause any problems because Handle values are unique in Citra, but it should be changed. I left a ToDo there because this is not correct behavior as per hardware.
* | | | | | | Merge pull request #249 from lioncash/enumGravatar bunnei2014-12-04
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | mem_map: Make enum for addresses use u32 as the underlying type
* \ \ \ \ \ \ \ Merge pull request #247 from lioncash/constGravatar bunnei2014-12-03
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | hid_user: Pass by reference with PadButtonPress/PadButtonRelease
| | * | | | | | | mem_map: Make enum for addresses use u32 as the underlying typeGravatar Lioncash2014-12-03
| | | | | | | | |
* | | | | | | | | Merge pull request #238 from archshift/dspGravatar bunnei2014-12-03
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Add stub for ConvertProcessFromDspDram
| * | | | | | | | | Add stub for ConvertProcessFromDspDramGravatar archshift2014-12-03
| | |/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | Should theoretically push retail stuff further along
| | | * | | | | | kernel: Shorten GetCountGravatar Lioncash2014-12-03
| | | | | | | | |
| | | * | | | | | kernel: Make some functions constGravatar Lioncash2014-12-03
| | |/ / / / / / | |/| | | | | |
| | * | | | | | hid_user: Pass by reference with PadButtonPress/PadButtonReleaseGravatar Lioncash2014-12-03
| | | |/ / / / | | |/| | | |
* | / | | | | PTM_U: Added a stub for GetBatteryLevel & GetBatteryChargeState & ↵Gravatar purpasmart962014-12-03
| |/ / / / / |/| | | | | | | | | | | | | | | | | GetAdapterState
| | | * | | Change NULLs to nullptrs.Gravatar Rohit Nirmal2014-12-03
| |_|/ / / |/| | | |
* | | | | Merge pull request #236 from rohit-n/sign-compareGravatar bunnei2014-12-03
|\ \ \ \ \ | | | | | | | | | | | | Silence a few -Wsign-compare warnings.
* \ \ \ \ \ Merge pull request #231 from purpasmart96/serv_ac_wifi_statusGravatar bunnei2014-12-03
|\ \ \ \ \ \ | | | | | | | | | | | | | | AC_U: Added a stub for GetWifiStatus
* \ \ \ \ \ \ Merge pull request #219 from Subv/ptmGravatar bunnei2014-12-03
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | PTM_U: Implemented the GetShellState function.
| | | | | * | MemMap: Updated memory map to subtract base address instead of mask.Gravatar bunnei2014-12-03
| |_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - More readable, a little less error prone. Conflicts: src/core/mem_map.h src/core/mem_map_funcs.cpp
| | * | | | AC_U: Added a stub for GetWifiStatusGravatar purpasmart962014-12-02
| | | | | |
| | | * | | Silence a few -Wsign-compare warnings.Gravatar Rohit Nirmal2014-11-30
| | | | | |
* | | | | | Merge pull request #237 from vaguilar/fix-viewportGravatar bunnei2014-11-30
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fixed viewport error caused by rounding
* \ \ \ \ \ \ Merge pull request #224 from bunnei/dsp-service-improvementsGravatar bunnei2014-11-30
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Dsp service improvements
* \ \ \ \ \ \ \ Merge pull request #214 from Subv/masterGravatar bunnei2014-11-30
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | CFG:U: Implemented the GetCountryCodeID and GetCountryCodeString
* \ \ \ \ \ \ \ \ Merge pull request #196 from archshift/settingsGravatar bunnei2014-11-30
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Merge Config::ReadXYZs