| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | SVC: Fixed typo with MapMemoryBlock DEBUG_LOG call. | 2014-08-07 | 1 | -1/+1 | ||
| | | | ||||||
| * | | Pica: Add command processor. | 2014-08-12 | 1 | -3/+5 | ||
| | | | ||||||
| * | | Pica/GPU: Change hardware registers to use physical addresses rather than ↵ | 2014-08-12 | 6 | -208/+72 | ||
| | | | | | | | | | | | | | | | virtual ones. This cleans up the mess that address reading/writing had become and makes the code a *lot* more sensible. This adds a physical<->virtual address converter to mem_map.h. For further accuracy, we will want to properly extend this to support a wider range of address regions. For now, this makes simply homebrew applications work in a good manner though. | |||||
| * | | GSP: Fix a major regression introduced in ffda035c, due to which no display ↵ | 2014-08-12 | 1 | -4/+13 | ||
| | | | | | | | | | transfers were triggered at all anymore. | |||||
| * | | Remove the fancy RegisterSet class introduced in 4c2bff61e. | 2014-08-12 | 3 | -150/+230 | ||
| |/ | | | | | While it was some nice and fancy template usage, it ultimately had many practical issues regarding length of involved expressions under regular usage as well as common code completion tools not being able to handle the structures. Instead, we now use a more conventional approach which is a lot more clean to use. | |||||
| * | GPU: Updated g_last_ticks variable to be more descriptive (represents CPU ↵ | 2014-08-06 | 1 | -5/+5 | ||
| | | | | | tick count of last vertical line). | |||||
| * | GPU: Updated horizontal sync line counter to use framebuffer height. | 2014-08-06 | 1 | -2/+3 | ||
| | | ||||||
| * | Thread: Added more descriptive comment to WaitCurrentThread. | 2014-08-06 | 2 | -2/+10 | ||
| | | ||||||
| * | GSP: Cleaned up command buffer decoding. | 2014-08-06 | 2 | -61/+69 | ||
| | | | | | | | | | GSP: Cleaned up code and added additional comments. GSP: Removed unnecessary TODO comment. GSP: Changed u32 iterators in TriggerCmdReqQueue to unsigned. | |||||
| * | GSP: Added reinitialization of other state objects. | 2014-08-05 | 1 | -0/+3 | ||
| | | ||||||
| * | GSP: Removed dumb GX prefixes to functions/structs in GSP namespace. | 2014-08-05 | 3 | -79/+80 | ||
| | | | | | - Various other cleanups. | |||||
| * | GSP: Removed unnecessary GX_FinishCommand function. | 2014-08-05 | 1 | -13/+5 | ||
| | | ||||||
| * | GSP: Implements preliminary command synchronization via GPU interrupts. | 2014-08-05 | 4 | -29/+140 | ||
| | | | | | Core: Added a comment to explain the logic for the RunLoop iterations. | |||||
| * | MemMap: Fixed typo with GetPointer to VRAM address. | 2014-08-05 | 1 | -1/+1 | ||
| | | ||||||
| * | AddressArbiter: Removed unnecessary HLE::Reschedule. | 2014-08-05 | 1 | -1/+0 | ||
| | | ||||||
| * | AddressArbiter: Fixed bug with break statements missing from case statements. | 2014-08-05 | 1 | -0/+2 | ||
| | | ||||||
| * | SRV: Updated GetProcSemaphore to create an event instead of a mutex. | 2014-08-05 | 1 | -8/+10 | ||
| | | ||||||
| * | SVC: Removed ArbitrateAddress log message that spams to much. | 2014-08-05 | 1 | -2/+0 | ||
| | | ||||||
| * | Kernel: Updated Event and Mutex to specify handle that they are blocking for. | 2014-08-05 | 2 | -2/+2 | ||
| | | ||||||
| * | Merge pull request #36 from bunnei/fix-memory-unaligned-reads | 2014-08-05 | 2 | -16/+28 | ||
| |\ | | | | | Fix memory unaligned reads | |||||
| | * | MemMap: Added an error for unaligned 16-bit memory reads. | 2014-08-05 | 1 | -0/+7 | ||
| | | | ||||||
| | * | MemMap: Removed Read64 function. | 2014-08-05 | 1 | -6/+0 | ||
| | | | | | | | | | | | - Unused code - Was not correct for unaligned memory reads | |||||
| | * | FS: Fix port name (old port name was based on an unaligned memory read). | 2014-08-05 | 1 | -1/+1 | ||
| | | | ||||||
| | * | MemMap: Fix Read32 for unaligned memory reads. | 2014-08-05 | 1 | -12/+23 | ||
| | | | | | | | | | MemMap: Cleaned up Read32 unaligned memory access. | |||||
| * | | ARM: Synchronize Citra's SkyEye core with 3dmoo's. | 2014-07-23 | 6 | -5919/+5303 | ||
| |/ | ||||||
| * | Use uniform formatting when printing hexadecimal numbers. | 2014-07-23 | 1 | -3/+3 | ||
| | | ||||||
| * | Fix a few warnings. | 2014-07-23 | 3 | -7/+7 | ||
| | | | | | Templates shouldn't be marked as inline if they aren't defined in the header. | |||||
| * | GPU: Clarify display transfer code. | 2014-07-23 | 1 | -12/+15 | ||
| | | | | | Also makes the illogical component order more obvious. | |||||
| * | GPU: Add documentation. | 2014-07-23 | 1 | -2/+14 | ||
| | | ||||||
| * | GSP: Add a few comments. | 2014-07-23 | 2 | -1/+15 | ||
| | | ||||||
| * | GSP: Clean up GX command processing a lot and treat command id as a u8 ↵ | 2014-07-23 | 2 | -37/+79 | ||
| | | | | | | | rather than a u32. Anonymous structs are not standard C++, hence don't use them. | |||||
| * | RegisterSet: Simplify code by using structs for register definition instead ↵ | 2014-07-23 | 2 | -133/+123 | ||
| | | | | | of unions. | |||||
| * | GPU: Make use of RegisterSet. | 2014-07-23 | 3 | -327/+200 | ||
| | | ||||||
| * | GPU: Make framebuffer code format-aware. | 2014-07-23 | 1 | -6/+47 | ||
| | | ||||||
| * | GPU: Interface cleanup. | 2014-07-23 | 2 | -13/+20 | ||
| | | ||||||
| * | GPU: Initialize GPU registers to some sensible default state. | 2014-07-23 | 1 | -1/+16 | ||
| | | ||||||
| * | GPU: Emulate memory fills. | 2014-07-23 | 4 | -3/+89 | ||
| | | ||||||
| * | GPU: Add proper framebuffer register handling. | 2014-07-23 | 2 | -11/+105 | ||
| | | ||||||
| * | GPU: Properly implement display transfers. | 2014-07-23 | 1 | -1/+19 | ||
| | | ||||||
| * | GPU: Add display transfer configuration. | 2014-07-23 | 2 | -0/+92 | ||
| | | ||||||
| * | GSP: HLE GXCommandId::SET_DISPLAY_TRANSFER and GXCommandId::SET_TEXTURE_COPY. | 2014-07-23 | 2 | -2/+17 | ||
| | | ||||||
| * | GSP: Implement ReadHWRegs and WriteHWRegs properly. | 2014-07-23 | 1 | -27/+46 | ||
| | | ||||||
| * | Use a more compatible choice of initial framebuffer addresses. | 2014-07-22 | 1 | -10/+22 | ||
| | | ||||||
| * | core: Kill off type redefenitions in armdefs.h | 2014-07-19 | 1 | -7/+0 | ||
| | | ||||||
| * | Kernel: Added preliminary support for address arbiters. | 2014-07-08 | 7 | -9/+144 | ||
| | | | | | | | | | AddressArbiter: Added documentation comment, fixed whitespace issue. AddressArbiter: Fixed incorrect comment, reordered if-statement to be more clear. SVC: Removed trailing whitespace. | |||||
| * | Thread: Added functions to resume threads from address arbitration. | 2014-07-08 | 2 | -0/+44 | ||
| | | | | | | | Thread: Cleaned up arbitrate address functions. Thread: Cleaned up ArbitrateAllThreads function. | |||||
| * | function_wrappers: Fixed incorrect wrapper, added another. | 2014-07-07 | 1 | -2/+9 | ||
| | | ||||||
| * | SharedMemory: Updated MapSharedMemory to use an enum for permissions. | 2014-07-05 | 3 | -16/+36 | ||
| | | | | | - Also added some safety checks to MapSharedMemory. | |||||
| * | Memory: Removed deprecated MapBlock_Shared function. | 2014-07-05 | 2 | -30/+0 | ||
| | | ||||||
| * | GSP: Fixed to use real shared memory object, various cleanups. | 2014-07-05 | 2 | -30/+40 | ||
| | | | | | | | | | - Previously, used a hard-coded shared memory handle of 0x10002000 (as used by libctru homebrew) GSP: Added name for shared memory. GSP: Cleaned up assertion message. | |||||