Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-12-10 | Merge pull request #243 from bunnei/fix-gsp-synch | bunnei | |
Fix gsp synch | |||
2014-12-09 | Explicitly specify LE strings to iconv, fixes paths in Steel Diver | archshift | |
2014-12-09 | GSP: Trigger GPU interrupts at more accurate locations. | bunnei | |
2014-12-09 | GSP: Updated TriggerCmdReqQueue to return success code. | bunnei | |
2014-12-09 | GSP: Updated RegisterInterruptRelayQueue to return expected magic number. | bunnei | |
2014-12-09 | GPU: Fixed bug in command list size decoding. | bunnei | |
2014-12-09 | Remove unused NDMA module | Yuri Kunde Schlesner | |
2014-12-09 | More cleanups. | Tony Wasserka | |
2014-12-09 | Pica: Re-enable command names on MSVC. | Tony Wasserka | |
The affected code is no longer limited by compiler support on that platform. | |||
2014-12-09 | citra-qt: Rename "Stop Tracing" to "Finish Tracing". | Tony Wasserka | |
This better reflects that no commands are supposed to show up until you hit the button a second time. | |||
2014-12-09 | More coding style fixes. | Tony Wasserka | |
2014-12-09 | Some code cleanup. | Tony Wasserka | |
2014-12-09 | citra-qt: Add pica framebuffer widget. | Tony Wasserka | |
2014-12-09 | citra_qt: Add enhanced texture debugging widgets. | Tony Wasserka | |
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. | |||
2014-12-09 | citra-qt: Add texture viewer to Pica command list. | Tony Wasserka | |
The texture viewer is enabled when selecting a write command to one of the texture config registers. | |||
2014-12-09 | Add GUI widget for controlling pica breakpoints. | Tony Wasserka | |
2014-12-09 | Pica/DebugUtils: Add breakpoint functionality. | Tony Wasserka | |
2014-12-09 | citra-qt: Polish the pica tracing widget. | Tony Wasserka | |
Changed start/stop button to reflect current tracing status. Properly labeled column headers. | |||
2014-12-09 | citra-qt: Add a utility spinbox class called CSpinBox. | Tony Wasserka | |
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. | |||
2014-12-09 | Build fix for something which shouldn't have compiled successfully to begin ↵ | Tony Wasserka | |
with. | |||
2014-12-09 | Fix some headers to include their dependencies properly. | Tony Wasserka | |
2014-12-08 | Merge pull request #217 from archshift/cmd_buff | bunnei | |
Log the cmd_buff arguments when citra comes across an unimplemented function | |||
2014-12-08 | Thread: Fixed to wait on address when in arbitration. | bunnei | |
2014-12-08 | Merge pull request #244 from bunnei/cleanup-memmap | bunnei | |
MemMap: Updated memory map to subtract base address instead of mask. | |||
2014-12-08 | Merge pull request #263 from lioncash/sasx | bunnei | |
Fix emulation of SASX and SSAX instructions. | |||
2014-12-08 | Merge pull request #259 from ichfly/master | bunnei | |
Loader: Add 3DSX support | |||
2014-12-08 | Merge pull request #264 from Subv/files | bunnei | |
Kernel/File: Fixed file read/write hwtests | |||
2014-12-08 | Merge pull request #260 from archshift/opendir | bunnei | |
Make OpenDirectory fail if the directory doesn't exist | |||
2014-12-08 | Kernel/File: Fixed file read/write hwtests | Subv | |
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 | |||
2014-12-08 | armemu: Fix SSAX | Lioncash | |
2014-12-08 | Loader: Add 3DSX support | ichfly | |
2014-12-08 | armemu: Fix SASX | Lioncash | |
2014-12-07 | armemu: Fix parenthesis warnings regarding bitwise ops | Lioncash | |
2014-12-07 | Make OpenDirectory fail if the directory doesn't exist | archshift | |
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 . | |||
2014-12-07 | Merge pull request #245 from rohit-n/null-nullptr | bunnei | |
Change NULLs to nullptrs. | |||
2014-12-04 | Merge pull request #250 from Subv/cbranch_2 | bunnei | |
SVC: Implemented GetThreadId. | |||
2014-12-04 | Merge pull request #222 from archshift/renamexyz | bunnei | |
Implemented RenameFile and RenameDirectory in FS:USER | |||
2014-12-04 | Merge pull request #248 from lioncash/kernel | bunnei | |
Misc minor kernel-related changes. | |||
2014-12-04 | Threads: Remove a redundant function. | Subv | |
Use the next_thread_id variable directly. | |||
2014-12-04 | Threads: Implemented a sequential thread id | Subv | |
2014-12-03 | Updated archive.cpp functions for proper error handling | archshift | |
2014-12-04 | SVC: Implemented GetThreadId. | Subv | |
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. | |||
2014-12-04 | Merge pull request #249 from lioncash/enum | bunnei | |
mem_map: Make enum for addresses use u32 as the underlying type | |||
2014-12-03 | Merge pull request #247 from lioncash/const | bunnei | |
hid_user: Pass by reference with PadButtonPress/PadButtonRelease | |||
2014-12-03 | mem_map: Make enum for addresses use u32 as the underlying type | Lioncash | |
2014-12-03 | Merge pull request #238 from archshift/dsp | bunnei | |
Add stub for ConvertProcessFromDspDram | |||
2014-12-03 | Add stub for ConvertProcessFromDspDram | archshift | |
Should theoretically push retail stuff further along | |||
2014-12-03 | kernel: Shorten GetCount | Lioncash | |
2014-12-03 | kernel: Make some functions const | Lioncash | |
2014-12-03 | hid_user: Pass by reference with PadButtonPress/PadButtonRelease | Lioncash | |