aboutsummaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2015-07-29Merge pull request #1014 from lioncash/unused-warnbunnei
core: Eliminate some unused variable warnings
2015-07-29Merge pull request #1013 from lioncash/unusedYuri Kunde Schlesner
dyncom: Remove an unused variable
2015-07-29core: Eliminate some unused variable warningsLioncash
2015-07-29dyncom: Remove an unused variableLioncash
This was used prior to InterpreterTranslate existing.
2015-07-29core: Fix missing prototype warningsLioncash
2015-07-29Merge pull request #1009 from lioncash/tableYuri Kunde Schlesner
am_net: Update function table data
2015-07-29am_net: Add missing function to the function tableLioncash
2015-07-29am_net: Add correct function name to the function tableLioncash
2015-07-29Merge pull request #982 from Subv/homebunnei
Service/APT: Return proper parameters in GetLockHandle.
2015-07-28dyncom: Handle left-operand PC correctly for data-processing opsLioncash
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).
2015-07-28Merge pull request #899 from zawata/Winsock-Deprecationbunnei
SOC:U : Fix WinSock function deprecation
2015-07-28Merge pull request #1003 from lioncash/armcruftbunnei
dyncom: Minor cleanups.
2015-07-28Merge pull request #873 from jroweboy/input_arrayTony Wasserka
Move input values into an array.
2015-07-28dyncom: Remove an unnecessary typedefLioncash
2015-07-28dyncom: Use enum class for instruction decoding resultsLioncash
2015-07-27Move input values into an arrayJames Rowe
2015-07-27dyncom: Remove code duplication regarding thumb instructionsLioncash
2015-07-27dyncom: Migrate exclusive memory access control into armstateLioncash
2015-07-27dyncom: Remove duplicated typedef and externLioncash
These are already present in arm_dyncom_dec.h.
2015-07-26dyncom: Use std::array for register arraysLioncash
2015-07-26dyncom: Use ARMul_State as an objectLioncash
Gets rid of C-like parameter passing.
2015-07-25dyncom: Remove unnecessary initialization code.Lioncash
Targeting ARM version variants was only a thing on armemu. The reset routine also does basically the same thing as NewState.
2015-07-25dyncom: Remove unnecessary abort-related cruftLioncash
Both the MPCore and the ARM9 have the same data abort model (base restored), so differentiating isn't necessary.
2015-07-25dyncom: Rename armdefs.h to armstate.hLioncash
2015-07-25dyncom: Get rid of skyeye typedefsLioncash
2015-07-25dyncom: Move helper functions to their own headerLioncash
2015-07-25dyncom: Move arminit.cpp and armsupp.cpp into skyeye_commonLioncash
2015-07-25Merge pull request #989 from lioncash/externYuri Kunde Schlesner
armdefs: Remove unnecessary extern keywords
2015-07-25armdefs: Remove unnecessary extern keywordsLioncash
2015-07-25loader: Remove unnecessary else usagesLioncash
2015-07-25Merge pull request #888 from zawata/Warning-Fixes-2Yuri Kunde Schlesner
Core\HLE : Fix Warning
2015-07-25Merge pull request #892 from zawata/another-warning-fixesYuri Kunde Schlesner
Yet More Warning Fixes
2015-07-23Service/APT: Fixed a regression, PreloadLibraryApplet should also start an ↵Subv
applet when called.
2015-07-23Service/APT: Return proper parameters in GetLockHandle.Subv
Documented some APT functions This allows applets to boot.
2015-07-23Merge pull request #983 from yuriks/null-memory-fillYuri Kunde Schlesner
GSP: Don't try to write memory fill registers if start address is 0
2015-07-23GSP: Don't try to write memory fill registers if start address is 0Yuri Kunde Schlesner
Verified to be what GSP does via REing. Fixes invalid virt->phys translation error spam in some games.
2015-07-23Qt/GPU Breakpoints: Added three more breakpoint types:Subv
* IncomingDisplayTransfer: Triggered just before a display transfer is performed. * GSPCommandProcessed: Triggered right after a GSP command is processed. * BufferSwapped: Triggered when the frames flip
2015-07-21Merge pull request #962 from Subv/am_appbunnei
Services/AM: Stubbed am:app::GetNumContentInfos to return 0 results.
2015-07-21Merge pull request #966 from Subv/logbunnei
Services/Logging: Log more useful information when some operations fail.
2015-07-21Services/Logging: Log more useful information when some operations fail.Subv
Namely OpenFileDirectly, OpenDirectory and OpenArchive
2015-07-21Merge pull request #957 from Subv/hwtest_crashbunnei
Kernel/Scheduling: Clean up a thread's wait_objects when its scheduled.
2015-07-21dyncom: Pass SVC immediates directly.Lioncash
Previously it would just re-read the already decoded instruction and extract the immediate value.
2015-07-21Services/AM: Stubbed am:app::GetNumContentInfos to return 0 results.Subv
Named the service functions in am:app as per 3dbrew. This fixes an illegal read loop in Steel Diver
2015-07-20Services/CFG: Added some missing functions to cfg:sSubv
2015-07-20Kernel/Scheduling: Clean up a thread's wait_objects when its scheduled.Subv
They'll be reset if needed during the next svcWaitSynchronization call (if there's any pending)
2015-07-20Merge pull request #939 from Subv/queryprocmembunnei
Kernel/SVC: Implemented svcQueryProcessMemory
2015-07-19Merge pull request #951 from Subv/bit5bunnei
GPU/DisplayTransfer: Implemented bit 5 in the transfer flags.
2015-07-19Merge pull request #946 from archshift/update-frdubunnei
Add more frd:u unknown service commands from 3dbrew
2015-07-19SOC:U : Update deprecated function gethostbyname() to getaddrinfo()zawata
2015-07-19GPU/DisplayTransfer: Implemented bit 5 in the transfer flags.Subv
It tells the GPU to not swizzle/de-swizzle the input during the transfer.