aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service
Commit message (Collapse)AuthorAge
* Added HID_SPVR service and split HID_U implementation into service/hid/hid.xxxGravatar archshift2015-01-21
|
* core: Fix a few docstringsGravatar Lioncash2015-01-20
|
* Expose GetSharedFont and NotifyToWait to APT:A and APT:S respectivelyGravatar archshift2015-01-18
|
* APT: Fix typo in setting return code for NotifyToWaitGravatar bunnei2015-01-15
|
* DSP: Removed useless spam log for SignalInterruptGravatar bunnei2015-01-15
|
* Merge pull request #482 from yuriks/fix-vblankGravatar bunnei2015-01-15
|\ | | | | Correctness fixes for GPU flipping and interrupts
* | APT: Fixed the comment style in some variablesGravatar Sebastian Valle2015-01-14
| |
| * GSP: Fix appending of interrupts to the shared memory bufferGravatar Yuri Kunde Schlesner2015-01-14
| | | | | | | | | | The code was previously appending the interrupt to after the end of the buffer, instead of at the end.
| * GSP: Update framebuffer info on all interruptsGravatar Yuri Kunde Schlesner2015-01-14
| | | | | | | | | | | | | | | | | | | | Hardware testing determined that the GSP processes shared memory framebuffer update info even when no memory transfer or filling GX commands are used. They are now updated on every interrupt, which isn't confirmed correct but matches hardware behaviour more closely. This also reverts the hack introduced in #404. It made a few games behave better, but I believe it's incorrect and also breaks other games.
| * GPU: Fire GPU interrupts at the correct places.Gravatar Yuri Kunde Schlesner2015-01-14
| | | | | | | | | | | | | | | | | | | | | | | | PDC0 and PDC1 are both VBlank interrupts. PDC0 was being treated as a HBlank interrupt and fired many more times than it should. They now both fire together at 60 Hz. This puzzlingly *improves* apparent framerate on many applications. A few other interrupts were being fired inside the GSP command processing instead of on the actual GPU register writes, so they were moved there, which should cover direct writes tho those registers not going through the GX command queue.
* | APTU: Stubbed NotifyToWait, taken from 3dmoo.Gravatar Subv2015-01-13
|/ | | | | Also renamed some handles in the APT:U service to be more descriptive. Fixed a typo in InquireNotification
* Services: Added some missing services.Gravatar Subv2015-01-13
| | | | | cfg:s, ptm:sysm, apt:s. apt:s is almost exactly the same as apt:u as per 3dbrew
* Fix building on MinGWGravatar darkf2015-01-11
|
* Stubbed y2r:u IsBusyConversionGravatar archshift2015-01-10
| | | | | There is no documentation available on this function, but we set the result to false as a stub. This allows Super Little Acorns to move all the way in game with pp3c.
* Added Archive ID to fs:USER debug logs involving opening the archive.Gravatar archshift2015-01-10
|
* Logging: Log all called service functions (under trace). Compile out all ↵Gravatar archshift2015-01-10
| | | | trace logs under release for performance.
* Kernel: Start using boost::intrusive_ptr for lifetime managementGravatar Yuri Kunde Schlesner2015-01-09
|
* Move ThreadContext to core/core.h and deal with the falloutGravatar Yuri Kunde Schlesner2015-01-09
|
* Merge pull request #404 from bunnei/more-frame-synch-fixesGravatar bunnei2015-01-07
|\ | | | | GPU: Toggle active framebuffer each frame
| * GSP: Toggle active framebuffer each frameGravatar bunnei2015-01-07
| |
* | Fix double-free in Service manager during shutdownGravatar Yuri Kunde Schlesner2015-01-07
| | | | | | | | Fixes #423.
* | Merge pull request #376 from Subv/arc_reorderGravatar bunnei2015-01-06
|\ \ | |/ |/| Archives: Change the folder layout of some archives.
| * Archives: Changed the unimplemented archives comment.Gravatar Subv2015-01-06
| | | | | | | | It now refers to me as the PoC
| * Archives: Addressed some commentsGravatar Subv2015-01-06
| |
* | Merge pull request #413 from purpasmart96/serv_cleanGravatar bunnei2015-01-05
|\ \ | | | | | | Services: Clean up a few things and add a few function names
* \ \ Merge pull request #272 from rohit-n/sign-compareGravatar bunnei2015-01-05
|\ \ \ | | | | | | | | Silence some -Wsign-compare warnings.
| | * | Services: Clean up a few things and add a few function namesGravatar purpasmart962015-01-05
| | | |
* | | | DSP: Signal (faked) interrupt on every frame.Gravatar bunnei2015-01-05
| | | | | | | | | | | | | | | | - Hack to work around games checking that the DSP event has been signaled by a real DSP interrupt.
* | | | Merge pull request #386 from archshift/y2ruGravatar bunnei2015-01-04
|\ \ \ \ | | | | | | | | | | Stub the y2r:u service
| | | | * Archives: Make SYSTEM_ID and SDCARD_ID stringsGravatar Subv2015-01-04
| | | | |
| | | | * Archives: Changed the way paths are built for the archives.Gravatar Subv2015-01-03
| | | | | | | | | | | | | | | | | | | | Each archive now takes a mount point of either NAND or SDMC, and builds its own directory structure there, trying to simulate an HLE-friendly hardware layout
| * | | | Stub the y2r:u serviceGravatar archshift2015-01-03
| | |/ / | |/| |
| | | * Archives: Change the folder layout of some archives.Gravatar Subv2015-01-02
| |_|/ |/| | | | | | | | This is to better represent the hardware layout, they are still aren't quite accurate, but this better and will help a bit when implementing the other archives like NAND-RO and NAND-RW
* | | Archives: Reduced duplicate code in RomFS and SaveCheck.Gravatar Subv2015-01-02
| | | | | | | | | | | | Fixed a few warnings and cleaned up the code
* | | SaveDataCheck: Preliminary work in this archive.Gravatar Subv2015-01-02
| | | | | | | | | | | | | | | | | | This allows Steel Diver to boot further, some files are needed. This is still not ready and needs a big cleanup, this will possibly be delayed until the way we handle archives is fixed (with factory classes instead of ahead-of-time creation of archives)
* | | Merge pull request #391 from lioncash/pedanticGravatar bunnei2015-01-02
|\ \ \ | | | | | | | | archive/elf: Minor misc changes.
| * | | archive: Fix initializer list orderGravatar Lioncash2015-01-02
| |/ /
* / / soc_u: Fix a missing formatting argumentGravatar Lioncash2015-01-02
|/ /
| * Silence some -Wsign-compare warnings.Gravatar Rohit Nirmal2015-01-01
|/
* SOC_U: Preliminary implementation of sockets.Gravatar Subv2014-12-31
| | | | | | | | | | | | | 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
* APT:A: Some style changesGravatar Subv2014-12-29
|
* Archives: Implemented ExtSaveData and SharedExtSaveDataGravatar Subv2014-12-29
| | | | | | | | 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.
* Kernel: New handle managerGravatar Yuri Kunde Schlesner2014-12-28
| | | | | | | | | | | 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.
* Rename ObjectPool to HandleTableGravatar Yuri Kunde Schlesner2014-12-28
|
* Merge pull request #330 from purpasmart96/new_srvGravatar bunnei2014-12-25
|\ | | | | More services & small clean ups
| * More services & small clean upsGravatar purpasmart962014-12-25
| |
* | Stubbed IsSdmcWriteable to always return writeable.Gravatar archshift2014-12-23
| |
* | Merge pull request #322 from chinhodado/masterGravatar bunnei2014-12-22
|\ \ | |/ |/| More warning cleanups
* | CFG: Fixed some warnings and errors in ClangGravatar Subv2014-12-21
| |
* | CFG: More style changesGravatar Subv2014-12-21
| |