aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle
AgeCommit message (Collapse)Author
2014-12-31SOC_U: Preliminary implementation of sockets.Subv
Stubbed CreateMemoryBlock Using Berkeley sockets, and Winsock2.2 on Windows. So far ftpony creates the socket and accepts incoming connections SOC_U: Renamed functions to maintain consistency Also prevents possible scope errors / conflicts with the actual Berkeley socket functions SOCU: Close all the opened sockets when cleaning up SOCU
2014-12-29APT:A: Some style changesSubv
2014-12-29Archives: Implemented ExtSaveData and SharedExtSaveDataSubv
They will be stored in /extsavedata/SDMC and /extsavedata/NAND respectively. Also redirect some APT_A functions to their APT_U equivalents. Implemented the gamecoin.dat file in SharedExtSaveData in the PTM module. Implemented formatting the savegame. Retake a previous savegame if it exists instead of reporting them as not formatted every time a game is loaded.
2014-12-28Kernel: New handle managerYuri Kunde Schlesner
This handle manager more closely mirrors the behaviour of the CTR-OS one. In addition object ref-counts and support for DuplicateHandle have been added. Note that support for DuplicateHandle is still experimental, since parts of the kernel still use Handles internally, which will likely cause troubles if two different handles to the same object are used to e.g. wait on a synchronization primitive.
2014-12-28Kernel: Replace GetStaticHandleType by HANDLE_TYPE constantsYuri Kunde Schlesner
2014-12-28Rename ObjectPool to HandleTableYuri Kunde Schlesner
2014-12-25Merge pull request #339 from bunnei/fixup-gsp-synchbunnei
Fixup gsp synch
2014-12-25Merge pull request #330 from purpasmart96/new_srvbunnei
More services & small clean ups
2014-12-25ARM: Add a mechanism for faking CPU time elapsed during HLE.bunnei
- Also a few cleanups.
2014-12-25More services & small clean upspurpasmart96
2014-12-23Stubbed IsSdmcWriteable to always return writeable.archshift
2014-12-22Merge pull request #322 from chinhodado/masterbunnei
More warning cleanups
2014-12-21CFG: Fixed some warnings and errors in ClangSubv
2014-12-21CFG: More style changesSubv
2014-12-21CFGU: IndentationSubv
2014-12-21CFG: Some indentationSubv
2014-12-21CFG: Changed the CreateConfigInfoBlk search loopSubv
2014-12-21CFG: Corrected the licenses in cfg_i.cpp and cfg_u.cppSubv
2014-12-21CFG: Create a new subfolder cfg inside service to handle cfgSubv
Moved most of the shared CFG code there, implemented a few CFG:I functions
2014-12-21CFGU: Some changesSubv
2014-12-21CFGU: Addressed some issues.Subv
2014-12-21CFGU: Addressed some comments.Subv
2014-12-21Style: Addressed some commentsSubv
2014-12-21CFG_U: Use Common::make_unique instead of the std versionSubv
2014-12-21CFG:U: Implemented some more blocksSubv
2014-12-21CFG: Implemented block 0x00070001 in the config savefileSubv
2014-12-21CFGU: Use an absolute offset in the config savefile blocksSubv
2014-12-21CFG: Load the Config savedata file if it already exists.Subv
2014-12-21CFGU: Added block 0x000A0002 to the default savegame fileSubv
That's the language id block, we're using LANGUAGE_EN for now. This block allows some games to boot further
2014-12-21CFG: Refactored how the config file works.Subv
It is now kept in memory as per 3dbrew, all updates happen on memory, then they can be saved using UpdateConfigNANDSavegame.
2014-12-21CFG:U: Add some data to the 0x00050005 config block.Subv
Seems to allow some games to boot further, thanks @Normmatt for sharing this information
2014-12-21CFG: Implemented the GetConfigInfoBlk2 function.Subv
Added a "config" file to the CFG process service (CFG:U), and added a few default blocks to it. Implemented GetSystemModel and GetModelNintendo2DS
2014-12-21Merge pull request #291 from purpasmart96/licensebunnei
License change
2014-12-21More warning cleanupsChin
2014-12-21Merge pull request #271 from archshift/createfbunnei
Added CreateFile to the FS_USER service
2014-12-21Added CreateFile to the FS_USER servicearchshift
Tested with hwtests.
2014-12-20License changepurpasmart96
2014-12-20Thread: Wait current thread on svc_SleepThreadbunnei
- Removed unused VBLANK sleep mode - Added error log for bad context switch - Renamed VerifyWait to CheckWaitType to be more clear
2014-12-20Merge pull request #316 from yuriks/thread-handlebunnei
Kernel: Implement support for current thread pseudo-handle
2014-12-20Merge pull request #315 from chinhodado/masterbunnei
Clean up some warnings
2014-12-20Clean up some warningsChin
2014-12-20Common: Add a clone of std::make_uniqueYuri Kunde Schlesner
2014-12-20Kernel: Implement support for current thread pseudo-handleYuri Kunde Schlesner
This boots a few (mostly Nintendo 1st party) games further.
2014-12-19Merge pull request #306 from Subv/even_more_savedatabunnei
SaveData: Added some documentation to FormatSaveData
2014-12-19FS_U: Added the command to the docs of SaveData functionsSubv
2014-12-18Merge pull request #302 from purpasmart96/flushshutupbunnei
GSP_GPU: Shut up FlushDataCache
2014-12-18GSP_GPU: Shut up FlushDataCachepurpasmart96
2014-12-18Merge pull request #308 from Subv/more_savedatabunnei
SystemSaveData: Fixed a typo that was segfaulting
2014-12-18SystemSaveData: Fixed a typo that was segfaultingSubv
2014-12-18Merge pull request #301 from Subv/more_savedatabunnei
SaveData: Implemented the SystemSaveData archive.