summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #68 from archshift/readfileGravatar bunnei2014-08-224-11/+88
|\ | | | | Added FS functions to Archive and Archive_RomFS
| * Added FS functions to Archive and Archive_RomFSGravatar archshift2014-08-224-11/+88
| |
* | ARM: Remove a forgotten const in vfp.Gravatar Emmanuel Gil Peyrot2014-08-202-2/+2
|/
* Core: Use std::array for managing kernel object spaceGravatar Lioncash2014-08-192-5/+5
| | | | These avoid relying on memset for clearing the arrays.
* Merge pull request #55 from lioncash/stringGravatar bunnei2014-08-1816-41/+38
|\ | | | | Core: Alter the kernel string functions to use std::string instead of const char*.
| * Core: Alter the kernel string functions to use std::string instead of const ↵Gravatar Lioncash2014-08-1716-41/+38
| | | | | | | | | | | | char*. Most functions already operate on std::strings. This also removes the need to manually null terminate thread names.
* | SVC: Added support for svc_GetSystemTick.Gravatar bunnei2014-08-182-19/+48
|/ | | | Changed HLE function return methods to be static inline functions.
* Merge pull request #53 from lioncash/memmapGravatar bunnei2014-08-171-4/+8
|\ | | | | Core: Fix undefined behavior in mem_map_funcs' WriteBlock function
| * Core: Fix undefined behavior in mem_map_funcs' WriteBlock functionGravatar Lioncash2014-08-171-4/+8
| |
* | Core: Fix a formatting error in svc.cppGravatar Lioncash2014-08-171-3/+2
|/ | | | | entry_point would not be added to the string. Also used StringFromFormat so that the buffer is unnecessary.
* Merge pull request #39 from bunnei/hid-minor-improvementsGravatar bunnei2014-08-122-6/+45
|\ | | | | Hid minor improvements
| * HID: Added new function entries from 3dbrew to FunctionTable.Gravatar bunnei2014-08-121-0/+5
| | | | | | | | HID: Fix typo with DisableGyroscopeLow command.
| * HID: Implemented HID_User::GetIPCHandles service function.Gravatar bunnei2014-08-071-5/+39
| |
| * SVC: Fixed typo with MapMemoryBlock DEBUG_LOG call.Gravatar bunnei2014-08-071-1/+1
| |
* | Pica: Add command processor.Gravatar Tony Wasserka2014-08-121-3/+5
| |
* | Pica/GPU: Change hardware registers to use physical addresses rather than ↵Gravatar Tony Wasserka2014-08-126-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 ↵Gravatar Tony Wasserka2014-08-121-4/+13
| | | | | | | | transfers were triggered at all anymore.
* | Remove the fancy RegisterSet class introduced in 4c2bff61e.Gravatar Tony Wasserka2014-08-123-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 ↵Gravatar bunnei2014-08-061-5/+5
| | | | tick count of last vertical line).
* GPU: Updated horizontal sync line counter to use framebuffer height.Gravatar bunnei2014-08-061-2/+3
|
* Thread: Added more descriptive comment to WaitCurrentThread.Gravatar bunnei2014-08-062-2/+10
|
* GSP: Cleaned up command buffer decoding.Gravatar bunnei2014-08-062-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.Gravatar bunnei2014-08-051-0/+3
|
* GSP: Removed dumb GX prefixes to functions/structs in GSP namespace.Gravatar bunnei2014-08-053-79/+80
| | | | - Various other cleanups.
* GSP: Removed unnecessary GX_FinishCommand function.Gravatar bunnei2014-08-051-13/+5
|
* GSP: Implements preliminary command synchronization via GPU interrupts.Gravatar bunnei2014-08-054-29/+140
| | | | Core: Added a comment to explain the logic for the RunLoop iterations.
* MemMap: Fixed typo with GetPointer to VRAM address.Gravatar bunnei2014-08-051-1/+1
|
* AddressArbiter: Removed unnecessary HLE::Reschedule.Gravatar bunnei2014-08-051-1/+0
|
* AddressArbiter: Fixed bug with break statements missing from case statements.Gravatar bunnei2014-08-051-0/+2
|
* SRV: Updated GetProcSemaphore to create an event instead of a mutex.Gravatar bunnei2014-08-051-8/+10
|
* SVC: Removed ArbitrateAddress log message that spams to much.Gravatar bunnei2014-08-051-2/+0
|
* Kernel: Updated Event and Mutex to specify handle that they are blocking for.Gravatar bunnei2014-08-052-2/+2
|
* Merge pull request #36 from bunnei/fix-memory-unaligned-readsGravatar bunnei2014-08-052-16/+28
|\ | | | | Fix memory unaligned reads
| * MemMap: Added an error for unaligned 16-bit memory reads.Gravatar bunnei2014-08-051-0/+7
| |
| * MemMap: Removed Read64 function.Gravatar bunnei2014-08-051-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).Gravatar bunnei2014-08-051-1/+1
| |
| * MemMap: Fix Read32 for unaligned memory reads.Gravatar bunnei2014-08-051-12/+23
| | | | | | | | MemMap: Cleaned up Read32 unaligned memory access.
* | ARM: Synchronize Citra's SkyEye core with 3dmoo's.Gravatar bunnei2014-07-236-5919/+5303
|/
* Use uniform formatting when printing hexadecimal numbers.Gravatar Tony Wasserka2014-07-231-3/+3
|
* Fix a few warnings.Gravatar Tony Wasserka2014-07-233-7/+7
| | | | Templates shouldn't be marked as inline if they aren't defined in the header.
* GPU: Clarify display transfer code.Gravatar Tony Wasserka2014-07-231-12/+15
| | | | Also makes the illogical component order more obvious.
* GPU: Add documentation.Gravatar Tony Wasserka2014-07-231-2/+14
|
* GSP: Add a few comments.Gravatar Tony Wasserka2014-07-232-1/+15
|
* GSP: Clean up GX command processing a lot and treat command id as a u8 ↵Gravatar Tony Wasserka2014-07-232-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 ↵Gravatar Tony Wasserka2014-07-232-133/+123
| | | | of unions.
* GPU: Make use of RegisterSet.Gravatar Tony Wasserka2014-07-233-327/+200
|
* GPU: Make framebuffer code format-aware.Gravatar Tony Wasserka2014-07-231-6/+47
|
* GPU: Interface cleanup.Gravatar Tony Wasserka2014-07-232-13/+20
|
* GPU: Initialize GPU registers to some sensible default state.Gravatar Tony Wasserka2014-07-231-1/+16
|
* GPU: Emulate memory fills.Gravatar Tony Wasserka2014-07-234-3/+89
|