aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
Commit message (Collapse)AuthorAge
* Properly indicate that CIA support is not implemented yetGravatar Benjamin Barenblat2015-08-15
| | | | | Make `Loader::LoadFile` return an `ErrorNotImplemented` if you call it on a CIA file.
* Give CIA file type a nameGravatar Benjamin Barenblat2015-08-15
| | | | | Make `GetFileTypeString` return ‘CIA’ for CIA (CTR Importable Archive) files.
* Merge pull request #1027 from lioncash/debuggerGravatar bunnei2015-08-13
|\ | | | | debugger: Add the ability to view VFP register contents
* | ARM Core, Video Core, CitraQt, Citrace: Use CommonTypes types instead of the ↵Gravatar Emmanuel Gil Peyrot2015-08-11
| | | | | | | | standard u?int*_t types.
* | arm_disasm: ARMv6 mul/div and abs media instructionsGravatar aroulin2015-08-11
| | | | | | | | | | | | SMLAD, SMUAD, SMLSD, SMUSD, SMLALD, SMLSLD, SMMLA, SMMUL, SMMLS USAD8, USADA8
* | arm_disasm: ARMv6 parallel add/sub media instructionsGravatar aroulin2015-08-11
| | | | | | | | {S, U, Q, UQ, SH, UH}{ADD16, ASX, SAX, SUB16, ADD8, SUB8}
* | arm_disasm: ARMv6 reversal media instructionsGravatar aroulin2015-08-09
| | | | | | | | | | REV, REV16, REVSH Only their ARM encoding, Thumb encoding is still missing.
* | arm_disasm: ARMv6 saturation media instructionsGravatar aroulin2015-08-09
| | | | | | | | SSAT, SSAT16, USAT, USAT16
* | arm_disasm: ARMv6 packing and sign-extend media instructionsGravatar aroulin2015-08-09
| | | | | | | | | | | | PKH, SEL SXTAB, SXTAB16, SXTB, SXTB16, SXTH, SXTAH UXTAB, UXTAB16, UXTB, UXTB16, UXTH, UXTAH
* | Merge pull request #1026 from lioncash/disasmGravatar Lioncash2015-08-07
|\ \ | | | | | | arm_disasm: Remove unnecessary code
| | * arm_interface: Implement interface for retrieving VFP registersGravatar Lioncash2015-08-06
| |/ |/|
| * arm_disasm: Remove unnecessary codeGravatar Lioncash2015-08-06
| | | | | | | | This part of disassembly only determines the opcode, there's no need for offset calculation here.
* | Disassembler: ARMv6K REX instructionsGravatar aroulin2015-08-06
| |
* | Disassembler: ARMv6K hint instructionsGravatar aroulin2015-08-06
| |
* | Merge pull request #1008 from lioncash/pcGravatar bunnei2015-07-30
|\ \ | | | | | | dyncom: Handle the case where PC is the source register for STR/VSTM/VLDM
* \ \ Merge pull request #1014 from lioncash/unused-warnGravatar bunnei2015-07-29
|\ \ \ | | | | | | | | core: Eliminate some unused variable warnings
* \ \ \ Merge pull request #1013 from lioncash/unusedGravatar Yuri Kunde Schlesner2015-07-29
|\ \ \ \ | | | | | | | | | | dyncom: Remove an unused variable
| | * | | core: Eliminate some unused variable warningsGravatar Lioncash2015-07-29
| |/ / / |/| | |
| * | | dyncom: Remove an unused variableGravatar Lioncash2015-07-29
| | | | | | | | | | | | | | | | This was used prior to InterpreterTranslate existing.
* | | | core: Fix missing prototype warningsGravatar Lioncash2015-07-29
|/ / /
* | | Merge pull request #1009 from lioncash/tableGravatar Yuri Kunde Schlesner2015-07-29
|\ \ \ | | | | | | | | am_net: Update function table data
| * | | am_net: Add missing function to the function tableGravatar Lioncash2015-07-29
| | | |
| * | | am_net: Add correct function name to the function tableGravatar Lioncash2015-07-29
| | |/ | |/|
* | | Merge pull request #982 from Subv/homeGravatar bunnei2015-07-29
|\ \ \ | |/ / |/| | Service/APT: Return proper parameters in GetLockHandle.
| | * dyncom: Handle the case where PC is the source register for STR/VSTM/VLDMGravatar Lioncash2015-07-29
| |/ |/|
* | dyncom: Handle left-operand PC correctly for data-processing opsGravatar Lioncash2015-07-28
| | | | | | | | | | | | This is considered deprecated in the ARM manual (using PC as an operand), however, this is still able to be executed on the MPCore (which I'm quite sure would be rare to begin with).
* | Merge pull request #899 from zawata/Winsock-DeprecationGravatar bunnei2015-07-28
|\ \ | | | | | | SOC:U : Fix WinSock function deprecation
* \ \ Merge pull request #1003 from lioncash/armcruftGravatar bunnei2015-07-28
|\ \ \ | | | | | | | | dyncom: Minor cleanups.
* \ \ \ Merge pull request #873 from jroweboy/input_arrayGravatar Tony Wasserka2015-07-28
|\ \ \ \ | | | | | | | | | | Move input values into an array.
| | * | | dyncom: Remove an unnecessary typedefGravatar Lioncash2015-07-28
| | | | |
| | * | | dyncom: Use enum class for instruction decoding resultsGravatar Lioncash2015-07-28
| | | | |
| * | | | Move input values into an arrayGravatar James Rowe2015-07-27
| | | | |
| | * | | dyncom: Remove code duplication regarding thumb instructionsGravatar Lioncash2015-07-27
| | | | |
| | * | | dyncom: Migrate exclusive memory access control into armstateGravatar Lioncash2015-07-27
| | | | |
| | * | | dyncom: Remove duplicated typedef and externGravatar Lioncash2015-07-27
| |/ / / |/| | | | | | | | | | | These are already present in arm_dyncom_dec.h.
* | | | dyncom: Use std::array for register arraysGravatar Lioncash2015-07-26
| | | |
* | | | dyncom: Use ARMul_State as an objectGravatar Lioncash2015-07-26
| | | | | | | | | | | | | | | | Gets rid of C-like parameter passing.
* | | | dyncom: Remove unnecessary initialization code.Gravatar Lioncash2015-07-25
| | | | | | | | | | | | | | | | | | | | | | | | Targeting ARM version variants was only a thing on armemu. The reset routine also does basically the same thing as NewState.
* | | | dyncom: Remove unnecessary abort-related cruftGravatar Lioncash2015-07-25
| | | | | | | | | | | | | | | | Both the MPCore and the ARM9 have the same data abort model (base restored), so differentiating isn't necessary.
* | | | dyncom: Rename armdefs.h to armstate.hGravatar Lioncash2015-07-25
| | | |
* | | | dyncom: Get rid of skyeye typedefsGravatar Lioncash2015-07-25
| | | |
* | | | dyncom: Move helper functions to their own headerGravatar Lioncash2015-07-25
| | | |
* | | | dyncom: Move arminit.cpp and armsupp.cpp into skyeye_commonGravatar Lioncash2015-07-25
|/ / /
* | | Merge pull request #989 from lioncash/externGravatar Yuri Kunde Schlesner2015-07-25
|\ \ \ | | | | | | | | armdefs: Remove unnecessary extern keywords
| * | | armdefs: Remove unnecessary extern keywordsGravatar Lioncash2015-07-25
| | | |
* | | | loader: Remove unnecessary else usagesGravatar Lioncash2015-07-25
|/ / /
* | | Merge pull request #888 from zawata/Warning-Fixes-2Gravatar Yuri Kunde Schlesner2015-07-25
|\ \ \ | | | | | | | | Core\HLE : Fix Warning
* \ \ \ Merge pull request #892 from zawata/another-warning-fixesGravatar Yuri Kunde Schlesner2015-07-25
|\ \ \ \ | | | | | | | | | | Yet More Warning Fixes
| | | | * Service/APT: Fixed a regression, PreloadLibraryApplet should also start an ↵Gravatar Subv2015-07-23
| | | | | | | | | | | | | | | | | | | | applet when called.
| | | | * Service/APT: Return proper parameters in GetLockHandle.Gravatar Subv2015-07-23
| | | | | | | | | | | | | | | | | | | | | | | | | Documented some APT functions This allows applets to boot.