aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
Commit message (Collapse)AuthorAge
...
* | | | | | Merge pull request #594 from Subv/display_transferGravatar bunnei2015-02-22
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | GPU: Fixed the RGBA8 input format and RGB8 output format
| | * | | | Cleaned up unaligned access.Gravatar Kevin Hartman2015-02-21
| | | | | |
| * | | | | GPU: Fixed the RGBA8 input format and RGB8 output formatGravatar Subv2015-02-21
| |/ / / / | | | | | | | | | | | | | | | in Display Transfers, tested with hwtests.
| | | | * Fix error message for bad config block request.Gravatar Kevin Hartman2015-02-20
| | |_|/ | |/| |
* | | | Merge pull request #588 from archshift/somebranchGravatar bunnei2015-02-20
|\ \ \ \ | |/ / / |/| | | Sweeping cleanup of Common
| * | | Misc cleanup of common and related functionsGravatar archshift2015-02-19
| | | |
| * | | Remove duplication of INSERT_PADDING_WORDS between pica.h and gpu.hGravatar archshift2015-02-19
| | | |
| * | | Remove the useless msg_handler compilation unit that was left over from DolphinGravatar archshift2015-02-18
| | |/ | |/|
* / | Convert a few C stdlib asserts to Citra's own assertsGravatar archshift2015-02-18
|/ /
* | Merge pull request #580 from lioncash/emplaceGravatar bunnei2015-02-18
|\ \ | | | | | | core/video_core: Use in-place construction where possible
* | | GPU: Properly implement memory fills.Gravatar Tony Wasserka2015-02-18
| | |
* | | Merge pull request #570 from purpasmart96/config_memGravatar bunnei2015-02-18
|\ \ \ | | | | | | | | ConfigMem: Clean up the Config memory to be more like the shared page
* \ \ \ Merge pull request #582 from lioncash/warningsGravatar bunnei2015-02-17
|\ \ \ \ | | | | | | | | | | vfpinstr: Fix trivial signed/unsigned mismatch warnings
* \ \ \ \ Merge pull request #579 from lioncash/bkptGravatar bunnei2015-02-17
|\ \ \ \ \ | | | | | | | | | | | | dyncom: Support conditional BKPT instructions
| | * | | | vfpinstr: Fix trivial signed/unsigned mismatch warningsGravatar Lioncash2015-02-17
| |/ / / / |/| | | |
| | | * | core/video_core: Use in-place construction where possibleGravatar Lioncash2015-02-17
| | | | |
| * | | | dyncom: Support conditional BKPT instructionsGravatar Lioncash2015-02-17
| | | | |
| | * | | ConfigMem: Clean up the Config memory to be more like the shared page and movedGravatar purpasmart962015-02-16
| | | | | | | | | | | | | | | | | | | | the helper macro for padding to common_funcs.h
* | | | | Services: Fixed "Tried to connect to named port err:f".Gravatar Subv2015-02-16
| | | | | | | | | | | | | | | | | | | | err:f is a named port, not a service
* | | | | Merge pull request #574 from lioncash/warnGravatar bunnei2015-02-16
|\ \ \ \ \ | |/ / / / |/| | | | vfpdouble: Use %p for printing pointer addresses.
* | | | | dyncom: Actually set the destination register for USAD8/USADA8.Gravatar Lioncash2015-02-16
| | | | | | | | | | | | | | | | | | | | Idiotville: Population: 1 - Inhabitant name: Lioncash
| * | | | vfpdouble: Use %p for printing pointer addresses.Gravatar Lioncash2015-02-15
|/ / / /
* | | | Merge pull request #539 from linkmauve/framebuffer-formatsGravatar bunnei2015-02-15
|\ \ \ \ | | | | | | | | | | Framebuffer formats
| * | | | video_core: Implement the remaining framebuffer formats in the OpenGL renderer.Gravatar Emmanuel Gil Peyrot2015-02-15
| | |/ / | |/| |
* / | | arm: Set the A bit on reset.Gravatar Lioncash2015-02-15
|/ / / | | | | | | | | | This enum value is ORed against in ARMul_Reset (and used to refer to all interrupt bits in the CPSR). So simply updating this is enough.
* | | Merge pull request #529 from Subv/masterGravatar bunnei2015-02-14
|\ \ \ | | | | | | | | Build: Fixed some warnings
* | | | core: Apply static to local functionsGravatar Lioncash2015-02-13
| | | |
* | | | arm: General cleanupGravatar Lioncash2015-02-13
| |/ / |/| | | | | | | | | | | | | | | | | - Remove several typedefs for ARMul_State. - Remove unused functions - Remove unused/unnecessary headers - Removed unused enums, etc.
* | | dyncom: Switch the app and system cores into the correct mode at initializationGravatar Lioncash2015-02-12
| | |
* | | dyncom: Clean up the constructorGravatar Lioncash2015-02-12
| | | | | | | | | | | | Some function calls aren't necessary and would be handled by regular initialization routines.
* | | dyncom: Remove warning for SXTAHGravatar Lioncash2015-02-12
| | | | | | | | | | | | This is tested to work correctly.
* | | arm: Remove ARMul_EmulateInitGravatar Lioncash2015-02-12
| | | | | | | | | | | | This was only used for armemu, which has since been removed. Removed components related to this as well.
| * | Build: Fixed some warningsGravatar Subv2015-02-12
| | |
* | | armdefs: Remove unnecessary extern CGravatar Lioncash2015-02-12
|/ /
* | Implemented WriteHWRegsWithMask for GSP.Gravatar Kevin Hartman2015-02-11
| |
* | arm: Remove ARM26 support.Gravatar Lioncash2015-02-11
| | | | | | | | This will never be used. 32-bit is the norm.
* | Merge pull request #559 from lioncash/cleanGravatar bunnei2015-02-11
|\ \ | | | | | | arm: Some cleanup. Also fixed the initial ARM mode that is emulated.
| * | arm: Get rid of some magic constants. Specify proper ARM mode.Gravatar Lioncash2015-02-11
| | | | | | | | | | | | Initially, we were starting the emulator in USER26MODE, which is incorrect, this should be USER32MODE.
| * | arm: Change some more constants into enumsGravatar Lioncash2015-02-11
| | |
* | | Asserts: break/crash program, fit to style guide; log.h->assert.hGravatar archshift2015-02-10
| | | | | | | | | | | | | | | | | | | | | Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft.
* | | GSP: Fixed typo in SignalInterruptGravatar bunnei2015-02-10
| | |
* | | Merge pull request #552 from bunnei/setbufferswap-fixGravatar bunnei2015-02-10
|\ \ \ | | | | | | | | GSP SetBufferSwap fix
| * | | GSP: Call SetBufferSwap for each screen on corresponding signal interrupt.Gravatar bunnei2015-02-10
| | | |
* | | | Merge pull request #526 from purpasmart96/citra_stubsGravatar bunnei2015-02-10
|\ \ \ \ | | | | | | | | | | Services: Stub some functions
* \ \ \ \ Merge pull request #556 from lioncash/cleanGravatar bunnei2015-02-10
|\ \ \ \ \ | | |_|/ / | |/| | | arm: Remove TRUE/FALSE defines
* | | | | Merge pull request #555 from lioncash/lutGravatar bunnei2015-02-10
|\ \ \ \ \ | | | | | | | | | | | | arm_dyncom_thumb: Make lookup tables static
| | * | | | arm: Remove TRUE/FALSE definesGravatar Lioncash2015-02-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Removed the Debug parameter from ARMul_State since it isn't used. - Changed ARMul_CoProInit to a void function. It always returned true.
* | | | | | PTM: Fixed a problem with the gamecoin PTM file.Gravatar Subv2015-02-10
| | | | | |
* | | | | | Archives: Made the Format function more generic.Gravatar Subv2015-02-10
| | | | | |
* | | | | | Archives: Expose the File and Directory classes to HLEGravatar Subv2015-02-10
| | | | | |