summaryrefslogtreecommitdiffstats
path: root/src/core/hle (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | Kernel: Introduce unique Object ids for debuggingYuri Kunde Schlesner2015-02-024-8/+16
| |
* | Kernel: Use separate Handle tables for CoreTiming userdataYuri Kunde Schlesner2015-02-024-18/+25
| | | | | | | | This is to support the removal of GetHandle soon
* | Kernel: Remove previous scheduled event when a Timer is re-SetYuri Kunde Schlesner2015-02-021-0/+3
| |
* | FS: Remove use of GetHandleYuri Kunde Schlesner2015-02-021-1/+1
| |
* | Thread: Modernize two functions that slipped through previous rebasesYuri Kunde Schlesner2015-02-024-18/+16
| |
* | Service: Store function names as const char* instead of std::stringYuri Kunde Schlesner2015-02-021-6/+6
| | | | | | | | | | Uses less memory (strings and function table is stored in constant data) and speeds up start up (no need to allocate and copy strings).
* | Service: Clean-up InterfaceYuri Kunde Schlesner2015-02-0246-67/+54
| |
* | Make Port/Service registration and querying more HW-accurateYuri Kunde Schlesner2015-02-024-106/+80
| |
* | Filesys: Move creation of Handles for File/Directory to service handlersYuri Kunde Schlesner2015-02-023-32/+33
| |
* | arm: Clean up ARMul_StateLioncash2015-02-011-1/+1
| | | | | | | | Remove unnecessary/unused struct variables.
* | Merge pull request #512 from lioncash/assignmentTony Wasserka2015-01-312-4/+4
|\ \ | |/ |/| shared_memory: Fix assignments in SharedMemory::Map
| * shared_memory: Fix assignments in SharedMemory::MapLioncash2015-01-302-4/+4
| |
* | archive: Fix initializer list order for the File class.Lioncash2015-01-301-1/+1
| |
* | apt_u: Fix missing printf specifiersLioncash2015-01-301-2/+2
|/
* Kernel: Mark all appropriate kernel objects as "final"Yuri Kunde Schlesner2015-01-307-8/+7
|
* SVC: Use CASCADE_RESULT in SVC handlersYuri Kunde Schlesner2015-01-302-77/+32
|
* Remove result.h InvalidHandleYuri Kunde Schlesner2015-01-304-30/+32
| | | | | It was only being used in two places, where it was replaced by a local constant.
* SVC: Change return type of handlers to ResultCodeYuri Kunde Schlesner2015-01-302-132/+127
|
* Kernel: Convert Event to not use HandlesYuri Kunde Schlesner2015-01-3010-152/+151
|
* Kernel: Convert Timer to (mostly) not use HandlesYuri Kunde Schlesner2015-01-303-111/+112
|
* Kernel: Convert Mutex to not use HandlesYuri Kunde Schlesner2015-01-305-114/+110
|
* Kernel: Convert AddressArbiter to not use HandlesYuri Kunde Schlesner2015-01-303-38/+55
|
* Kernel: Convert Semaphore to not use HandlesYuri Kunde Schlesner2015-01-303-67/+88
|
* Kernel: Convert SharedMemory to not use HandlesYuri Kunde Schlesner2015-01-308-102/+107
|
* Additions to ResultVal to make it more convenient to use.Yuri Kunde Schlesner2015-01-301-1/+25
|
* Move VAddr/PAddr typedefs to kernel.hYuri Kunde Schlesner2015-01-301-0/+5
|
* Kernel: Remove useless/duplicated comments; mark functions staticYuri Kunde Schlesner2015-01-306-32/+8
|
* Merge pull request #412 from purpasmart96/svc_table_cleanupbunnei2015-01-281-7/+7
|\ | | | | SVC: Update the SVC function table
| * SVC: Update the SVC function tablepurpasmart962015-01-271-7/+7
| |
* | Merge pull request #345 from purpasmart96/apt_stubsbunnei2015-01-271-91/+276
|\ \ | | | | | | APT_U: Stub some functions & misc changes
| * | APT_U: Stub some functions & misc changespurpasmart962015-01-231-91/+276
| | |
* | | Merge pull request #485 from Subv/more_servsbunnei2015-01-2618-1/+393
|\ \ \ | | | | | | | | Services: Stubbed more services.
| * | | Services/HID: Removed some files due to a rebase errorSubv2015-01-243-267/+0
| | | |
| * | | Services: Stubbed more services.Subv2015-01-2421-1/+660
| | | | | | | | | | | | | | | | Implemented FSUser::CreateExtSaveData
* | | | cam_u.h: fix indentationarchshift2015-01-221-2/+2
|/ / / | | | | | | Withholding my profanity towards Xcode.
* | | Merge pull request #493 from archshift/ptmplaybunnei2015-01-225-0/+102
|\ \ \ | | | | | | | | Stubbed some services
| * | | Stubbed cam:u servicearchshift2015-01-213-0/+49
| | | |
| * | | Stubbed ptm:play servicearchshift2015-01-213-0/+53
| | | |
* | | | WaitSynchronization: Added a result code for invalid result, fixed bug.bunnei2015-01-221-3/+9
| | | |
* | | | Thread: Fix WaitSynchronization1 to not set register 1 on thread wakeup.bunnei2015-01-223-25/+45
| | | |
* | | | Thread: Use std::find in CheckWait_WaitObject.bunnei2015-01-221-4/+5
| | | |
* | | | Mutex: Cleanup and remove redundant code.bunnei2015-01-223-47/+29
| | | |
* | | | Kernel: Renamed some functions for clarity.bunnei2015-01-227-10/+10
| | | | | | | | | | | | | | | | | | | | - ReleaseNextThread->WakeupNextThread - ReleaseAllWaitingThreads->WakeupAllWaitingThreads.
* | | | Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.bunnei2015-01-229-71/+42
| | | |
* | | | WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" pure virtual.bunnei2015-01-229-23/+22
| | | |
* | | | Event: Fix implementation of "non-sticky" events.bunnei2015-01-221-0/+4
| | | |
* | | | Session: Change to a WaitObject.bunnei2015-01-223-2/+9
| | | |
* | | | Kernel: Reschedule on SignalEvent and SendSyncRequest, fix some bugs.bunnei2015-01-222-1/+2
| | | |
* | | | Mutex: Fix a bug where the thread should not wait if it already has the mutex.bunnei2015-01-221-1/+4
| | | |
* | | | Kernel: Moved Wait and Acquire to WaitObject, added way to retrieve a WaitObject safely.bunnei2015-01-224-20/+59
| | | |
* | | | SVC: Removed a Sleep that made no sensebunnei2015-01-221-6/+1
| | | | | | | | | | | | | | | | | | | | - Would deadlock the calling thread - Code would never get hit anyways
* | | | AddressArbiter: Changed to Kernel::Object, big cleanup, removed code that made no sense.bunnei2015-01-225-38/+45
| | | |
* | | | Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.bunnei2015-01-229-122/+63
| | | |
* | | | WaitSynchronizationN: Improved commentsbunnei2015-01-221-7/+12
| | | |
* | | | WaitSynchronizationN: Refactor to fix several bugsbunnei2015-01-228-79/+76
| | | | | | | | | | | | | | | | | | | | | | | | - Separate wait checking from waiting the current thread - Resume thread when wait_all=true only if all objects are available at once - Set output to correct wait object index when there are duplicate handles
* | | | Kernel: Separate WaitSynchronization into Wait and Acquire methods.bunnei2015-01-228-18/+59
| | | |
* | | | WaitSynchronizationN: Handle case where handles=nullptr.bunnei2015-01-221-0/+4
| | | |
* | | | WaitSynchronizationN: Handle case where handle_count is invalid.bunnei2015-01-221-3/+7
| | | |
* | | | WaitSynchronizationN: Handle case where handle_count=0.bunnei2015-01-221-19/+29
| | | |
* | | | WaitSynchronizationN: Implement return valuesbunnei2015-01-2210-83/+189
| | | |
* | | | Event: Fixed some bugs and cleanup (Subv)bunnei2015-01-224-57/+16
| | | |
* | | | Thread: Keep track of multiple wait objects.bunnei2015-01-223-16/+30
| | | |
* | | | Event: Get rid of permanent_lock hack.bunnei2015-01-222-36/+8
| | | |
* | | | WaitObject: Added RemoveWaitingThread, fixed a bug, and cleanup.bunnei2015-01-222-4/+17
| | | |
* | | | Kernel: Added WaitObject and changed "waitable" objects inherit from it.bunnei2015-01-228-71/+73
| | | |
* | | | Added HID_SPVR service and split HID_U implementation into service/hid/hid.xxxarchshift2015-01-219-217/+327
|/ / /
* | | core: Fix a few docstringsLioncash2015-01-204-4/+4
| | |
* | | Merge pull request #492 from archshift/aptbunnei2015-01-202-1/+4
|\ \ \ | | | | | | | | Expose GetSharedFont and NotifyToWait to APT:A and APT:S respectively
| * | | Expose GetSharedFont and NotifyToWait to APT:A and APT:S respectivelyarchshift2015-01-192-1/+4
| |/ /
* | | Merge pull request #383 from zhuowei/shared_pagebunnei2015-01-193-0/+109
|\ \ \ | |/ / |/| | Add some support for the shared page
| * | Add some support for the shared page (currently 3d slider is implemented)Zhuowei Zhang2015-01-163-0/+109
| | |
* | | APT: Fix typo in setting return code for NotifyToWaitbunnei2015-01-161-1/+1
| | |
* | | DSP: Removed useless spam log for SignalInterruptbunnei2015-01-161-5/+2
| | |
* | | Merge pull request #482 from yuriks/fix-vblankbunnei2015-01-162-35/+25
|\ \ \ | | | | | | | | Correctness fixes for GPU flipping and interrupts
| * | | GSP: Fix appending of interrupts to the shared memory bufferYuri Kunde Schlesner2015-01-142-17/+12
| | | | | | | | | | | | | | | | | | | | 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 interruptsYuri Kunde Schlesner2015-01-141-12/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.Yuri Kunde Schlesner2015-01-141-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | Merge pull request #481 from Subv/hm_bbunnei2015-01-151-7/+21
|\ \ \ \ | | | | | | | | | | APTU: Stubbed NotifyToWait, taken from 3dmoo.
| * | | | APT: Fixed the comment style in some variablesSebastian Valle2015-01-141-2/+2
| | | | |
| * | | | APTU: Stubbed NotifyToWait, taken from 3dmoo.Subv2015-01-141-7/+21
| |/ / / | | | | | | | | | | | | | | | | Also renamed some handles in the APT:U service to be more descriptive. Fixed a typo in InquireNotification
* | | | Merge pull request #480 from Subv/arb_2bunnei2015-01-143-4/+21
|\ \ \ \ | |/ / / |/| | | AddrArbiter: Implement arbitration types 3 and 4.
| * | | AddrArbiter: Implement arbitration types 3 and 4.Subv2015-01-133-4/+21
| | |/ | |/|
* / | Services: Added some missing services.Subv2015-01-138-1/+358
|/ / | | | | | | | | cfg:s, ptm:sysm, apt:s. apt:s is almost exactly the same as apt:u as per 3dbrew
* | Fix building on MinGWdarkf2015-01-121-0/+13
| |
* | Merge pull request #456 from Subv/waitsync1bunnei2015-01-121-3/+2
|\ \ | | | | | | SVC: Wake up the thread after the delay in WaitSync1
| * | SVC: Wake up the thread after the delay in WaitSync1Subv2015-01-111-3/+2
| | |
* | | Merge pull request #466 from Subv/wakebunnei2015-01-111-0/+3
|\ \ \ | |/ / |/| | Thread: Prevent waking a thread multiple times.
| * | Thread: Prevent waking a thread multiple times.Subv2015-01-111-0/+3
| | | | | | | | | | | | If a thread was woken up by something, cancel the wakeup timeout.
* | | Stubbed y2r:u IsBusyConversionarchshift2015-01-111-1/+16
| | | | | | | | | | | | | | | 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.archshift2015-01-101-3/+3
| | |
* | | Logging: Log all called service functions (under trace). Compile out all trace logs under release for performance.archshift2015-01-109-33/+22
| | |
* | | Kernel: Start using boost::intrusive_ptr for lifetime managementYuri Kunde Schlesner2015-01-0912-90/+95
| | |
* | | Kernel: Don't re-assign object's handle when duplicating oneYuri Kunde Schlesner2015-01-092-2/+3
|/ /
* | Merge pull request #444 from yuriks/handle-reform2bunnei2015-01-0915-360/+289
|\ \ | | | | | | Kernel Lifetime Reform Pt. 2
| * | Thread: Fix nullptr access in a logging functionYuri Kunde Schlesner2015-01-091-1/+2
| | |
| * | Thread: Rename thread_queue => thread_listYuri Kunde Schlesner2015-01-091-6/+6
| | |
| * | Thread: Reduce use of Handles and move some funcs to inside the class.Yuri Kunde Schlesner2015-01-0910-301/+221
| | |
| * | Kernel: Move Thread's definition to the header fileYuri Kunde Schlesner2015-01-093-53/+67
| | |
| * | Move ThreadContext to core/core.h and deal with the falloutYuri Kunde Schlesner2015-01-098-19/+13
| | |
* | | Merge pull request #436 from kevinhartman/system-corebunnei2015-01-091-0/+5
|\ \ \ | |/ / |/| | Warn if a new thread is intended to be run on the system CPU core
| * | Warn if a new thread is intended to be run on the system CPU core until we implement correct scheduling for such a thread.Kevin Hartman2015-01-071-0/+5
| | |
* | | Merge pull request #255 from Subv/cbranch_3bunnei2015-01-097-5/+232
|\ \ \ | | | | | | | | Implemented timers
| * | | SVC: Implemented the Timer service calls.Subv2015-01-097-5/+232
| | | |
* | | | SVC: Fixed SleepThread.Subv2015-01-093-8/+43
| |_|/ |/| | | | | | | | It will now properly wait the specified number of nanoseconds and then wake up the thread.
* | | Threads: Use a dummy idle thread when no other are ready.Subv2015-01-083-1/+35
| | | | | | | | | | | | This thread will not actually execute instructions, it will only advance the timing/events and try to yield immediately to the next ready thread, if there aren't any ready threads then it will be rescheduled and start its job again.
* | | Merge pull request #404 from bunnei/more-frame-synch-fixesbunnei2015-01-081-1/+4
|\ \ \ | | | | | | | | GPU: Toggle active framebuffer each frame
| * | | GSP: Toggle active framebuffer each framebunnei2015-01-081-1/+4
| | | |
* | | | Merge pull request #431 from yuriks/thread-queue-cleanupbunnei2015-01-071-1/+1
|\ \ \ \ | |_|/ / |/| | | Common: Clean up ThreadQueueList
| * | | Common: Clean up ThreadQueueListYuri Kunde Schlesner2015-01-071-1/+1
| | |/ | |/| | | | | | | | | | | | | | | | | | | Replace all the C-style complicated buffer management with a std::deque. In addition to making the code easier to understand it also adds support for non-POD IdTypes. Also clean the rest of the code to follow our code style.
* / | Fix double-free in Service manager during shutdownYuri Kunde Schlesner2015-01-072-25/+4
|/ / | | | | | | Fixes #423.
* | Merge pull request #376 from Subv/arc_reorderbunnei2015-01-074-18/+23
|\ \ | |/ |/| Archives: Change the folder layout of some archives.
| * Archives: Changed the unimplemented archives comment.Subv2015-01-061-1/+1
| | | | | | | | It now refers to me as the PoC
| * Archives: Addressed some commentsSubv2015-01-061-2/+2
| |
| * Archives: Make SYSTEM_ID and SDCARD_ID stringsSubv2015-01-042-4/+4
| |
| * Archives: Changed the way paths are built for the archives.Subv2015-01-044-15/+20
| | | | | | | | 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
| * Archives: Change the folder layout of some archives.Subv2015-01-032-2/+2
| | | | | | | | 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
* | Merge pull request #413 from purpasmart96/serv_cleanbunnei2015-01-067-33/+36
|\ \ | | | | | | Services: Clean up a few things and add a few function names
| * | Services: Clean up a few things and add a few function namespurpasmart962015-01-067-33/+36
| | |
* | | Merge pull request #272 from rohit-n/sign-comparebunnei2015-01-061-4/+4
|\ \ \ | | | | | | | | Silence some -Wsign-compare warnings.
| * | | Silence some -Wsign-compare warnings.Rohit Nirmal2015-01-011-4/+4
| |/ /
* | | DSP: Signal (faked) interrupt on every frame.bunnei2015-01-052-4/+21
| | | | | | | | | | | | - Hack to work around games checking that the DSP event has been signaled by a real DSP interrupt.
* | | Merge pull request #407 from Subv/arbiterbunnei2015-01-051-0/+11
|\ \ \ | | | | | | | | AddressArbiter: Ported arbitration type 2 from 3dmoo.
| * | | AddressArbiter: Ported arbitration type 2 from 3dmoo.Subv2015-01-031-0/+11
| | |/ | |/| | | | | | | (Thanks 3dmoo!)
* | | Merge pull request #408 from Subv/mutexbunnei2015-01-051-2/+2
|\ \ \ | | | | | | | | Mutex: Add the calling thread to the waiting list when needed
| * | | Mutex: Add the calling thread to the waiting list when neededSubv2015-01-041-2/+2
| |/ / | | | | | | | | | This will happen when the mutex is already owned by another thread. Should fix some issues with games being stuck due to waiting threads not being awoken.
* | | Merge pull request #386 from archshift/y2rubunnei2015-01-053-0/+70
|\ \ \ | |/ / |/| | Stub the y2r:u service
| * | Stub the y2r:u servicearchshift2015-01-033-0/+70
| |/
* | Archives: Reduced duplicate code in RomFS and SaveCheck.Subv2015-01-032-4/+5
| | | | | | | | Fixed a few warnings and cleaned up the code
* | SaveDataCheck: Preliminary work in this archive.Subv2015-01-032-3/+35
| | | | | | | | | | | | 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/pedanticbunnei2015-01-031-3/+3
|\ \ | | | | | | archive/elf: Minor misc changes.
| * | archive: Fix initializer list orderLioncash2015-01-031-3/+3
| |/
* / soc_u: Fix a missing formatting argumentLioncash2015-01-031-1/+1
|/
* SOC_U: Preliminary implementation of sockets.Subv2014-12-314-22/+721
| | | | | | | | | | | | | 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 changesSubv2014-12-301-12/+12
|
* Archives: Implemented ExtSaveData and SharedExtSaveDataSubv2014-12-305-45/+94
| | | | | | | | 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 managerYuri Kunde Schlesner2014-12-2813-168/+209
| | | | | | | | | | | 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.
* Kernel: Replace GetStaticHandleType by HANDLE_TYPE constantsYuri Kunde Schlesner2014-12-288-15/+15
|
* Rename ObjectPool to HandleTableYuri Kunde Schlesner2014-12-2812-54/+54
|
* Merge pull request #339 from bunnei/fixup-gsp-synchbunnei2014-12-261-0/+8
|\ | | | | Fixup gsp synch
| * ARM: Add a mechanism for faking CPU time elapsed during HLE.bunnei2014-12-261-0/+8
| | | | | | | | - Also a few cleanups.
* | Merge pull request #330 from purpasmart96/new_srvbunnei2014-12-2660-305/+355
|\ \ | | | | | | More services & small clean ups
| * | More services & small clean upspurpasmart962014-12-2660-305/+355
| | |
* | | Stubbed IsSdmcWriteable to always return writeable.archshift2014-12-241-1/+18
| |/ |/|
* | Merge pull request #322 from chinhodado/masterbunnei2014-12-221-2/+2
|\ \ | |/ |/| More warning cleanups
| * More warning cleanupsChin2014-12-211-2/+2
| |
* | CFG: Fixed some warnings and errors in ClangSubv2014-12-222-4/+4
| |
* | CFG: More style changesSubv2014-12-221-5/+5
| |
* | CFGU: IndentationSubv2014-12-211-4/+3
| |
* | CFG: Some indentationSubv2014-12-211-11/+13
| |
* | CFG: Changed the CreateConfigInfoBlk search loopSubv2014-12-211-7/+4
| |
* | CFG: Corrected the licenses in cfg_i.cpp and cfg_u.cppSubv2014-12-212-2/+2
| |
* | CFG: Create a new subfolder cfg inside service to handle cfgSubv2014-12-219-485/+610
| | | | | | | | Moved most of the shared CFG code there, implemented a few CFG:I functions
* | CFGU: Some changesSubv2014-12-211-12/+33
| |
* | CFGU: Addressed some issues.Subv2014-12-211-43/+55
| |
* | CFGU: Addressed some comments.Subv2014-12-211-11/+13
| |
* | Style: Addressed some commentsSubv2014-12-211-4/+5
| |
* | CFG_U: Use Common::make_unique instead of the std versionSubv2014-12-211-1/+2
| |
* | CFG:U: Implemented some more blocksSubv2014-12-211-4/+30
| |
* | CFG: Implemented block 0x00070001 in the config savefileSubv2014-12-211-0/+5
| |
* | CFGU: Use an absolute offset in the config savefile blocksSubv2014-12-211-1/+3
| |
* | CFG: Load the Config savedata file if it already exists.Subv2014-12-211-3/+4
| |
* | CFGU: Added block 0x000A0002 to the default savegame fileSubv2014-12-211-0/+18
| | | | | | | | That's the language id block, we're using LANGUAGE_EN for now. This block allows some games to boot further
* | CFG: Refactored how the config file works.Subv2014-12-211-55/+126
| | | | | | | | It is now kept in memory as per 3dbrew, all updates happen on memory, then they can be saved using UpdateConfigNANDSavegame.
* | CFG:U: Add some data to the 0x00050005 config block.Subv2014-12-211-6/+11
| | | | | | | | Seems to allow some games to boot further, thanks @Normmatt for sharing this information
* | CFG: Implemented the GetConfigInfoBlk2 function.Subv2014-12-212-12/+188
| | | | | | | | | | | | Added a "config" file to the CFG process service (CFG:U), and added a few default blocks to it. Implemented GetSystemModel and GetModelNintendo2DS
* | Merge pull request #291 from purpasmart96/licensebunnei2014-12-2182-84/+84
|\ \ | | | | | | License change
| * | License changepurpasmart962014-12-2182-84/+84
| | |
* | | Merge pull request #271 from archshift/createfbunnei2014-12-213-1/+47
|\ \ \ | | | | | | | | Added CreateFile to the FS_USER service
| * | | Added CreateFile to the FS_USER servicearchshift2014-12-213-1/+47
| | | | | | | | | | | | | | | | Tested with hwtests.
* | | | Thread: Wait current thread on svc_SleepThreadbunnei2014-12-213-22/+35
| |_|/ |/| | | | | | | | | | | | | | - Removed unused VBLANK sleep mode - Added error log for bad context switch - Renamed VerifyWait to CheckWaitType to be more clear
* | | Merge pull request #316 from yuriks/thread-handlebunnei2014-12-203-2/+16
|\ \ \ | | | | | | | | Kernel: Implement support for current thread pseudo-handle
| * | | Kernel: Implement support for current thread pseudo-handleYuri Kunde Schlesner2014-12-203-2/+16
| | | | | | | | | | | | | | | | This boots a few (mostly Nintendo 1st party) games further.
* | | | Merge pull request #315 from chinhodado/masterbunnei2014-12-202-5/+5
|\ \ \ \ | |_|/ / |/| | | Clean up some warnings
| * | | Clean up some warningsChin2014-12-202-5/+5
| | | |
* | | | Common: Add a clone of std::make_uniqueYuri Kunde Schlesner2014-12-201-6/+7
| | | |
* | | | Merge pull request #306 from Subv/even_more_savedatabunnei2014-12-201-2/+31
|\ \ \ \ | |/ / / |/| | | SaveData: Added some documentation to FormatSaveData
| * | | FS_U: Added the command to the docs of SaveData functionsSubv2014-12-201-0/+2
| | | |
| * | | SaveData: Added some documentation to FormatSaveDataSubv2014-12-181-2/+29
| | | | | | | | | | | | | | | | | | | | We still don't know what the other parameters do, but they appear to be very similar to those of FormatThisUserSaveData. Most likely FormatThisUserSaveData is just an alias for FormatSaveData with LowPathType Empty
* | | | Merge pull request #302 from purpasmart96/flushshutupbunnei2014-12-191-1/+25
|\ \ \ \ | |_|_|/ |/| | | GSP_GPU: Shut up FlushDataCache
| * | | GSP_GPU: Shut up FlushDataCachepurpasmart962014-12-191-1/+25
| | | |
* | | | Merge pull request #308 from Subv/more_savedatabunnei2014-12-191-1/+1
|\ \ \ \ | | | | | | | | | | SystemSaveData: Fixed a typo that was segfaulting
| * | | | SystemSaveData: Fixed a typo that was segfaultingSubv2014-12-191-1/+1
| | | | |
* | | | | Merge pull request #301 from Subv/more_savedatabunnei2014-12-181-0/+9
|\| | | | | |/ / / |/| | | SaveData: Implemented the SystemSaveData archive.
| * | | SaveData: Implemented the SystemSaveData archive.Subv2014-12-181-0/+9
| |/ / | | | | | | | | | It will be stored in the /syssavedata folder. This archive is user by various Services and possibly games via the FS:U service.
* | | Merge pull request #185 from purpasmart96/mem_permbunnei2014-12-182-5/+13
|\ \ \ | |/ / |/| | Kernel: Add missing permissions
| * | Kernel:Add missing permissions in shared memory & svcpurpasmart962014-11-192-5/+13
| | |
* | | Filesystem/Archives: Implemented the SaveData archiveSubv2014-12-186-13/+95
| |/ |/| | | | | | | | | | | | | | | | | The savedata for each game is stored in /savedata/<ProgramID> for NCCH files. ELF files and 3DSX files use the folder 0 because they have no ID information Got rid of the code duplication in File and Directory Files that deal with the host machine's file system now live in DiskFile, similarly for directories and DiskDirectory and archives with DiskArchive. FS_U: Use the correct error code when a file wasn't found
* | Comment out empty arrays causing compile errors in MSVCYuri Kunde Schlesner2014-12-162-6/+8
| |
* | Merge pull request #283 from yuriks/archive-refactorbunnei2014-12-167-241/+245
|\ \ | | | | | | Archive refactor
| * | Work around libstdc++'s lack of support for std::hash on enumsYuri Kunde Schlesner2014-12-161-0/+15
| | |
| * | FS.Archive: Clean up treatment of archives and their handlesYuri Kunde Schlesner2014-12-163-196/+175
| | | | | | | | | | | | | | | | | | | | | - Refactor FS::Archive internals to make Archive creation and lifetime management clearer. - Remove the "Archive as a File" hack. - Implement 64-bit Archive handles.
| * | Service.FS: Rename FileSys::File to FileBackendYuri Kunde Schlesner2014-12-161-1/+1
| | |
| * | Service.FS: Rename FileSys::Directory to DirectoryBackendYuri Kunde Schlesner2014-12-161-2/+2
| | |
| * | Service.FS: Rename FileSys::Archive to ArchiveBackendYuri Kunde Schlesner2014-12-162-5/+5
| | |
| * | Service.FS: Do archive registration using IdCode instead of nameYuri Kunde Schlesner2014-12-163-16/+27
| | |
| * | HLE: Rename namespaces to match move & fix initialization orderYuri Kunde Schlesner2014-12-167-36/+36
| | |
| * | HLE: Move kernel/archive.* to service/fs/Yuri Kunde Schlesner2014-12-166-6/+5
| | |
* | | Merge pull request #282 from archshift/servicesbunnei2014-12-169-0/+221
|\ \ \ | |/ / |/| | Added stubs for ldr:ro, cecd:u, nim:aoc, and am:app services
| * | Added stub for nim:aoc service...archshift2014-12-163-0/+60
| | |
| * | Added stub for cecd:u service...archshift2014-12-163-0/+52
| | | | | | | | | | | | I couldn't find any information about this service...
| * | Added stub for ldr:ro service...archshift2014-12-163-0/+57
| | |
| * | Added am:app service stub.archshift2014-12-163-0/+52
| | | | | | | | | | | | Apparently nothing at all is known about this service...
* | | Remove SyncRequest from K::Object and create a new K::Session typeYuri Kunde Schlesner2014-12-1514-104/+128
|/ / | | | | | | | | | | | | This is a first step at fixing the conceptual insanity that is our handling of service and IPC calls. For now, interfaces still directly derived from Session because we don't have the infrastructure to do it properly. (That is, Processes and scheduling them.)
* | Kernel/Semaphores: Fixed buildSubv2014-12-131-2/+2
| |
* | Kernel/Semaphore: Small style changeSubv2014-12-131-1/+1
| |
* | Kernel/Semaphores: Invert the available count checking.Subv2014-12-131-11/+9
| | | | | | | | Same semantics, idea by @yuriks
* | Kernel/Semaphores: Addressed some issues.Subv2014-12-132-32/+18
| |
* | Semaphore: Removed an unneeded functionSubv2014-12-131-5/+0
| |
* | Semaphores: Addressed some style issuesSubv2014-12-131-6/+5
| |
* | Semaphore: Implemented the initial_count parameter.Subv2014-12-132-5/+7
| |
* | SVC: Implemented ReleaseSemaphore.Subv2014-12-134-19/+81
| | | | | | | | This behavior was tested on hardware, however i'm still not sure what use the "initial_count" parameter has
* | SVC: Implemented svcCreateSemaphoreSubv2014-12-134-1/+115
| | | | | | | | | | ToDo: Implement svcReleaseSemaphore * Some testing against hardware needed
* | kernel: Remove unused log argumentsLioncash2014-12-131-3/+3
| |
* | Convert old logging calls to new logging macrosYuri Kunde Schlesner2014-12-1320-191/+138
| |
* | New logging systemYuri Kunde Schlesner2014-12-131-0/+1
| |
* | Merge pull request #267 from bunnei/apt-shared-fontbunnei2014-12-132-35/+101
|\ \ | | | | | | APT shared font loading
| * | APT_U: Added GetSharedFont service function.bunnei2014-12-131-34/+100
| | |
| * | MemMap: Renamed "GSP" heap to "linear", as this is not specific to GSP.bunnei2014-12-121-1/+1
| | | | | | | | | | | | - Linear simply indicates that the mapped physical address is always MappedVAddr+0x0C000000, thus this memory can be used for hardware devices' DMA (such as the GPU).
* | | DSP: Added stub for ReadPipeIfPossible.bunnei2014-12-121-1/+45
|/ /
* | Merge pull request #256 from Subv/mutexbunnei2014-12-113-37/+67
|\ \ | | | | | | Kernel/Mutex: Properly lock the mutex when a thread enters it
| * | Mutex: Remove some forward declarationsSubv2014-12-071-16/+15
| | | | | | | | | | | | Moved Mutex::WaitSynchronization to the end of the file.
| * | Mutex: Release all held mutexes when a thread exits.Subv2014-12-073-22/+56
| | |
| * | Mutex: Properly lock the mutex when a thread enters itSubv2014-12-061-12/+9
| | | | | | | | | | | | Also resume only the next immediate thread waiting for the mutex when it is released, instead of resuming them all.
* | | CFG:U: Store country codes as u16 instead of char pointers, and return the correct error in GetCountryCodeID.Emmanuel Gil Peyrot2014-12-101-44/+48
| | |
* | | GSP: Trigger GPU interrupts at more accurate locations.bunnei2014-12-101-7/+6
| | |
* | | GSP: Updated TriggerCmdReqQueue to return success code.bunnei2014-12-101-0/+3
| | |
* | | GSP: Updated RegisterInterruptRelayQueue to return expected magic number.bunnei2014-12-101-1/+4
| | |
* | | GPU: Fixed bug in command list size decoding.bunnei2014-12-101-1/+1
| | |
* | | Merge pull request #217 from archshift/cmd_buffbunnei2014-12-091-12/+12
|\ \ \ | | | | | | | | Log the cmd_buff arguments when citra comes across an unimplemented function
| * | | Log the cmd_buff arguments when citra comes across an unimplemented functionarchshift2014-11-251-12/+12
| | | |
* | | | Thread: Fixed to wait on address when in arbitration.bunnei2014-12-093-11/+31
| | | |
* | | | Make OpenDirectory fail if the directory doesn't existarchshift2014-12-071-0/+5
| |/ / |/| | | | | | | | | | | | | | | | | This is in line with what the hardware itself does. It does this by splitting the initial directory opening into Directory.Open(), which will return false if a stat fails. Then, Archive::OpenDirectory will return nullptr, and archive.cpp will return an error code .
* | | Merge pull request #250 from Subv/cbranch_2bunnei2014-12-053-4/+31
|\ \ \ | | | | | | | | SVC: Implemented GetThreadId.
| * | | Threads: Remove a redundant function.Subv2014-12-041-9/+1
| | | | | | | | | | | | | | | | Use the next_thread_id variable directly.
| * | | Threads: Implemented a sequential thread idSubv2014-12-042-4/+19
| | | |
| * | | SVC: Implemented GetThreadId.Subv2014-12-043-4/+24
| | | | | | | | | | | | | | | | For now threads are using their Handle value as their Id, it should not really cause any problems because Handle values are unique in Citra, but it should be changed. I left a ToDo there because this is not correct behavior as per hardware.
* | | | Merge pull request #222 from archshift/renamexyzbunnei2014-12-053-38/+163
|\ \ \ \ | | | | | | | | | | Implemented RenameFile and RenameDirectory in FS:USER
| * | | | Updated archive.cpp functions for proper error handlingarchshift2014-12-043-70/+41
| | | | |
| * | | | Implemented RenameDirectory in FS:USERarchshift2014-11-253-1/+78
| | | | |
| * | | | Implemented RenameFile in FS:USERarchshift2014-11-253-1/+78
| | |/ / | |/| |
* | | | Merge pull request #248 from lioncash/kernelbunnei2014-12-052-10/+7
|\ \ \ \ | | | | | | | | | | Misc minor kernel-related changes.
| * | | | kernel: Shorten GetCountLioncash2014-12-041-6/+3
| | | | |
| * | | | kernel: Make some functions constLioncash2014-12-042-4/+4
| | | | |
* | | | | Merge pull request #247 from lioncash/constbunnei2014-12-042-4/+4
|\ \ \ \ \ | | | | | | | | | | | | hid_user: Pass by reference with PadButtonPress/PadButtonRelease
| * | | | | hid_user: Pass by reference with PadButtonPress/PadButtonReleaseLioncash2014-12-042-4/+4
| | |_|/ / | |/| | |
* | | | | Merge pull request #238 from archshift/dspbunnei2014-12-041-25/+44
|\ \ \ \ \ | | | | | | | | | | | | Add stub for ConvertProcessFromDspDram
| * | | | | Add stub for ConvertProcessFromDspDramarchshift2014-12-041-25/+44
| | |/ / / | |/| | | | | | | | | | | | | Should theoretically push retail stuff further along
* | | | | PTM_U: Added a stub for GetBatteryLevel & GetBatteryChargeState & GetAdapterStatepurpasmart962014-12-041-3/+72
| |/ / / |/| | |
* | | | Merge pull request #231 from purpasmart96/serv_ac_wifi_statusbunnei2014-12-031-1/+19
|\ \ \ \ | | | | | | | | | | AC_U: Added a stub for GetWifiStatus
| * | | | AC_U: Added a stub for GetWifiStatuspurpasmart962014-12-031-1/+19
| | |/ / | |/| |
* | | | Merge pull request #219 from Subv/ptmbunnei2014-12-031-1/+18
|\ \ \ \ | |_|/ / |/| | | PTM_U: Implemented the GetShellState function.
| * | | PTM_U: Implemented the GetShellState function.Subv2014-12-011-1/+18
| | | |
* | | | Merge pull request #224 from bunnei/dsp-service-improvementsbunnei2014-12-012-26/+107
|\ \ \ \ | | | | | | | | | | Dsp service improvements
| * | | | DSP: Added stubs for several commonly used DSP service functions.bunnei2014-12-011-25/+106
| | | | |
| * | | | DSP: Fixed typo in port name.bunnei2014-12-011-1/+1
| | |/ / | |/| |
* | | | Merge pull request #214 from Subv/masterbunnei2014-12-011-2/+86
|\ \ \ \ | | | | | | | | | | CFG:U: Implemented the GetCountryCodeID and GetCountryCodeString
| * | | | CFG:U: Implemented the GetCountryCodeID and GetCountryCodeString.Subv2014-11-301-2/+86
| | | | |
* | | | | Merge pull request #225 from bunnei/fix-release-mutexbunnei2014-11-301-8/+7
|\ \ \ \ \ | | | | | | | | | | | | Mutex: Changed behavior to always release mutex for all threads.
| * | | | | Mutex: Changed behavior to always release mutex for all threads.bunnei2014-11-261-8/+7
| | |/ / / | |/| | |
* | | | | Merge pull request #226 from bunnei/svc-and-thread-fixesbunnei2014-11-302-1/+6
|\ \ \ \ \ | |_|/ / / |/| | | | Svc and thread fixes
| * | | | Thread: Check that thread is actually in "wait state" when verifying wait.bunnei2014-11-261-1/+1
| | | | |
| * | | | SVC: Add debug log to ArbitrateAddress.bunnei2014-11-261-0/+2
| | | | |
| * | | | SVC: SleepThread should yield to the next ready thread.bunnei2014-11-261-0/+3
| |/ / /
* / / / Fixed formatting and switch statement warningsvaguilar2014-11-271-3/+3
|/ / /
* | | Use pointers instead of passing handles around in some functions.Yuri Kunde Schlesner2014-11-241-19/+15
| | |
* | | Remove duplicated docs/update them for changed parameters.Yuri Kunde Schlesner2014-11-2410-88/+0
| | |
* | | HLE: Revamp error handling throrough the HLE codeYuri Kunde Schlesner2014-11-2421-294/+670
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All service calls in the CTR OS return result codes indicating the success or failure of the call. Previous to this commit, Citra's HLE emulation of services and the kernel universally either ignored errors or returned dummy -1 error codes. This commit makes an initial effort to provide an infrastructure for error reporting and propagation which can be use going forward to make HLE calls accurately return errors as the original system. A few parts of the code have been updated to use the new system where applicable. One part of this effort is the definition of the `ResultCode` type, which provides facilities for constructing and parsing error codes in the structured format used by the CTR. The `ResultVal` type builds on `ResultCode` by providing a container for values returned by function that can report errors. It enforces that correct error checking will be done on function returns by preventing the use of the return value if the function returned an error code. Currently this change is mostly internal since errors are still suppressed on the ARM<->HLE border, as a temporary compatibility hack. As functionality is implemented and tested this hack can be eventually removed.
* | | Merge pull request #191 from archshift/deletexyzbunnei2014-11-243-26/+114
|\ \ \ | |/ / |/| | Added DeleteFile and DeleteDirectory functions to FS:USER and the archives.
| * | Added DeleteFile and DeleteDirectory functions to FS:USER and the archives.archshift2014-11-233-26/+114
| | |
* | | Add more services and some fixes, along with more "override"purpasmart962014-11-2125-17/+452
| | | | | | | | | | | | in the service's headers
* | | Merge pull request #211 from linkmauve/masterbunnei2014-11-1930-86/+86
|\ \ \ | | | | | | | | Remove trailing spaces from the entire project
| * | | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generatedEmmanuel Gil Peyrot2014-11-1930-86/+86
| | | |
* | | | Merge pull request #208 from lioncash/staticsbunnei2014-11-192-23/+23
|\ \ \ \ | |/ / / |/| | | Add static to some variables
| * | | Add static to some variablesLioncash2014-11-192-23/+23
| | | |
* | | | Remove extraneous semicolonsLioncash2014-11-181-1/+1
|/ / /
* / / core: Mark some hle functions as staticLioncash2014-11-185-46/+46
|/ / | | | | | | These functions are not referred to by their linkage name outside of the translation unit, so they can be marked as static.
* | Archive: Fixed to not destroy archive handle on close.bunnei2014-11-181-3/+3
| |
* | Archive: Fixed close archive before freeing.bunnei2014-11-181-1/+1
| |
* | FS_User: Support FileSye::Path in a more generic way.bunnei2014-11-182-42/+76
| | | | | | | | added a todo to kernel archive
* | FileSys: Updated backend code to use FileSys::Path instead of string for paths.bunnei2014-11-183-14/+14
| |
* | Add missing boss:U service, needed according to Nintendo Zone logs.archshift2014-11-173-0/+57
| |
* | Fix two format strings.Lioncash2014-11-141-1/+1
| |
* | Merge pull request #183 from archshift/lowpathbunnei2014-11-131-83/+81
|\ \ | | | | | | Add support for UTF-16 strings for LowPaths in FS:USER
| * | Use std::u16string for conversion between UTF-8 and UTF-16, FS:USER functionsarchshift2014-11-132-138/+40
| | |
| * | Add support for UTF-16 strings for LowPaths in FS:USERarchshift2014-11-102-86/+182
| |/
* | Merge pull request #188 from bunnei/apt-fixesbunnei2014-11-121-19/+90
|\ \ | | | | | | APT_U: Various improvements and bug fixes.
| * | APT_U: Added stub for function AppletUtility.bunnei2014-11-121-1/+29
| | |
| * | APT_U: Set a valid parameter buffer size in GlanceParameter.bunnei2014-11-121-17/+39
| | | | | | | | | | | | - Also Clarified GlanceParameter/ReceiveParameter documentation.
| * | APT_U: Release service lock on initialization.bunnei2014-11-121-0/+4
| | |
| * | APT_U: Fixes for GetLockHandle to boot system titles.bunnei2014-11-121-1/+18
| |/ | | | | | | - Also added comment to GetLockHandle function.
* / Add FRD:U service and functionsarchshift2014-11-113-0/+64
|/
* Merge pull request #163 from archshift/create-directorybunnei2014-11-023-4/+63
|\ | | | | Added CreateDirectory function to service/fs.cpp, and in Archive.
| * Added CreateDirectory function to service/fs.cpp, and in Archive.archshift2014-11-023-4/+63
| |
* | Added ReceiveNotification, PublishToSubscriber unimplemented functions to SRVarchshift2014-11-021-0/+2
|/
* Added stub err:f service.archshift2014-11-023-0/+56
|
* Added a bunch of servicespurpasmart962014-11-0117-0/+581
|
* Merge pull request #162 from SeannyM/warning-fixesbunnei2014-10-302-6/+6
|\ | | | | Fix some warnings
| * Fix some warningsSean2014-10-302-6/+6
| |
* | FS:USER - Implemented IsSdmcDetectedarchshift2014-10-301-1/+17
| |
* | Renamed souce files of services to match port namesGareth Poole2014-10-2911-10/+10
|/
* Merge pull request #141 from archshift/crash-huntbunnei2014-10-281-0/+4
|\ | | | | hid.cpp: Fixed crash when updating pad data while null
| * hid.cpp: Fixed crash when updating pad data while nullarchshift2014-10-141-0/+4
| | | | | | | | Fixes #137
* | Add `override` keyword through the code.Yuri Kunde Schlesner2014-10-2613-46/+46
| | | | | | | | This was automated using `clang-modernize`.
* | ARM: Integrate SkyEye faster "dyncom" interpreter.bunnei2014-10-251-20/+0
| | | | | | | | | | | | | | | | | | | | Fixed typo (make protected member public) Added license header back in. I originally removed this because I mostly rewrote the file, but meh ARM: Fixed a type error in dyncom interpreter. ARM: Updated dyncom to use unique_ptr for internal ARM state.
* | Don’t fail on empty filename in OpenFileDirectly, return the archive handle insteadEmmanuel Gil Peyrot2014-10-251-8/+7
|/
* Merge pull request #128 from purpasmart96/masterbunnei2014-10-081-1/+31
|\ | | | | APT:U Added a stub fuction for "GlanceParameter"
| * APT: Added a stub for the "GlanceParameter" function.purpasmart962014-10-081-1/+31
| |
* | FileSys: split the constructor into an Open method, in order to notify the opener something went wrong.Emmanuel Gil Peyrot2014-10-061-0/+3
| | | | | | | | Kernel: Return an invalid handle to OpenFile when it failed to open.
* | FileSys/Kernel: Implement SetSize service call for File objects.Emmanuel Gil Peyrot2014-10-061-0/+8
|/
* Added some more names to the function tablepurpasmart962014-10-051-0/+2
| | | Added "SetApplicationCpuTimeLimit" and "GetApplicationCpuTimeLimit" to apt.cpp
* added "StoreDataCache" to the function tablepurpasmart962014-09-301-0/+1
| | | seems simple enough
* Use the citra user path for the sdmc directoryarchshift2014-09-211-2/+1
|
* Kernel: Implement the Close command for Archive, File and Directory.Emmanuel Gil Peyrot2014-09-172-0/+43
|
* FS: Implement OpenArchive, OpenDirectory, OpenFile and OpenFileDirectly calls.Emmanuel Gil Peyrot2014-09-171-20/+177
|
* Kernel: Add a Directory object and a getter for it from an Archive object.Emmanuel Gil Peyrot2014-09-173-0/+91
|
* Kernel: Add a File object and a getter for it from an Archive object.Emmanuel Gil Peyrot2014-09-172-0/+118
|
* Core: Get rid of unnecessary switch statement in KernelLioncash2014-09-151-41/+2
|
* Added support for multiple input device types for KeyMap and connected Qt.Kevin Hartman2014-09-122-113/+127
|
* Initial HID PAD work, with GLFW only.Kevin Hartman2014-09-122-24/+197
|
* Created structure for PAD.Kevin Hartman2014-09-122-0/+28
|
* Merge pull request #99 from archshift/ext-checkbunnei2014-09-111-1/+1
|\ | | | | loader.cpp: improved file extension checking, made Upper/LowerStr useful, moved string_util into Common namespace
| * Added string_util to common, small changes in loader.cpparchshift2014-09-091-1/+1
| |
* | core: Prune redundant includesarchshift2014-09-0912-23/+0
|/
* core: Pass string by reference in FetchFromPortName and DeleteServiceLioncash2014-09-062-4/+4
|
* Threading: Fix thread starting to execute first instruction correctly.bunnei2014-08-281-0/+5
|
* srv::Initialize: Return "success" status code.bunnei2014-08-281-0/+4
|
* Pica/citra-qt: Replace command list view and command list debugging code with something more sophisticated.Tony Wasserka2014-08-251-5/+0
|
* GSP: Update framebuffer information when necessary.Tony Wasserka2014-08-252-2/+41
|
* GSP: Implement SetBufferSwap.Tony Wasserka2014-08-252-1/+47
|
* GSP: Add a helper function for convenience.Tony Wasserka2014-08-251-17/+22
|
* Added FS functions to Archive and Archive_RomFSarchshift2014-08-231-3/+31
|
* Core: Use std::array for managing kernel object spaceLioncash2014-08-192-5/+5
| | | | These avoid relying on memset for clearing the arrays.
* Merge pull request #55 from lioncash/stringbunnei2014-08-1916-41/+38
|\ | | | | Core: Alter the kernel string functions to use std::string instead of const char*.
| * Core: Alter the kernel string functions to use std::string instead of const char*.Lioncash2014-08-1816-41/+38
| | | | | | | | Most functions already operate on std::strings. This also removes the need to manually null terminate thread names.
* | SVC: Added support for svc_GetSystemTick.bunnei2014-08-192-19/+48
|/ | | | Changed HLE function return methods to be static inline functions.
* Core: Fix a formatting error in svc.cppLioncash2014-08-171-3/+2
| | | | | entry_point would not be added to the string. Also used StringFromFormat so that the buffer is unnecessary.
* Merge pull request #39 from bunnei/hid-minor-improvementsbunnei2014-08-132-6/+45
|\ | | | | Hid minor improvements
| * HID: Added new function entries from 3dbrew to FunctionTable.bunnei2014-08-131-0/+5
| | | | | | | | HID: Fix typo with DisableGyroscopeLow command.
| * HID: Implemented HID_User::GetIPCHandles service function.bunnei2014-08-081-5/+39
| |
| * SVC: Fixed typo with MapMemoryBlock DEBUG_LOG call.bunnei2014-08-081-1/+1
| |
* | Pica/GPU: Change hardware registers to use physical addresses rather than virtual ones.Tony Wasserka2014-08-121-9/+9
| | | | | | | | | | This cleans up the mess that address reading/writing had become and makes the code a *lot* more sensible. This adds a physical<->virtual address converter to mem_map.h. For further accuracy, we will want to properly extend this to support a wider range of address regions. For now, this makes simply homebrew applications work in a good manner though.
* | GSP: Fix a major regression introduced in ffda035c, due to which no display transfers were triggered at all anymore.Tony Wasserka2014-08-121-4/+13
| |
* | Remove the fancy RegisterSet class introduced in 4c2bff61e.Tony Wasserka2014-08-121-18/+18
|/ | | | | While it was some nice and fancy template usage, it ultimately had many practical issues regarding length of involved expressions under regular usage as well as common code completion tools not being able to handle the structures. Instead, we now use a more conventional approach which is a lot more clean to use.
* Thread: Added more descriptive comment to WaitCurrentThread.bunnei2014-08-072-2/+10
|
* GSP: Cleaned up command buffer decoding.bunnei2014-08-072-61/+69
| | | | | | | | GSP: Cleaned up code and added additional comments. GSP: Removed unnecessary TODO comment. GSP: Changed u32 iterators in TriggerCmdReqQueue to unsigned.
* GSP: Added reinitialization of other state objects.bunnei2014-08-061-0/+3
|
* GSP: Removed dumb GX prefixes to functions/structs in GSP namespace.bunnei2014-08-062-77/+78
| | | | - Various other cleanups.
* GSP: Removed unnecessary GX_FinishCommand function.bunnei2014-08-061-13/+5
|
* GSP: Implements preliminary command synchronization via GPU interrupts.bunnei2014-08-062-18/+109
| | | | Core: Added a comment to explain the logic for the RunLoop iterations.
* AddressArbiter: Removed unnecessary HLE::Reschedule.bunnei2014-08-061-1/+0
|
* AddressArbiter: Fixed bug with break statements missing from case statements.bunnei2014-08-061-0/+2
|
* SRV: Updated GetProcSemaphore to create an event instead of a mutex.bunnei2014-08-061-8/+10
|
* SVC: Removed ArbitrateAddress log message that spams to much.bunnei2014-08-061-2/+0
|
* Kernel: Updated Event and Mutex to specify handle that they are blocking for.bunnei2014-08-062-2/+2
|
* FS: Fix port name (old port name was based on an unaligned memory read).bunnei2014-08-061-1/+1
|
* Fix a few warnings.Tony Wasserka2014-07-231-3/+3
| | | | Templates shouldn't be marked as inline if they aren't defined in the header.
* GSP: Add a few comments.Tony Wasserka2014-07-232-1/+15
|
* GSP: Clean up GX command processing a lot and treat command id as a u8 rather than a u32.Tony Wasserka2014-07-232-37/+79
| | | | Anonymous structs are not standard C++, hence don't use them.
* GPU: Make use of RegisterSet.Tony Wasserka2014-07-231-21/+28
|
* GPU: Emulate memory fills.Tony Wasserka2014-07-232-1/+9
|
* GSP: HLE GXCommandId::SET_DISPLAY_TRANSFER and GXCommandId::SET_TEXTURE_COPY.Tony Wasserka2014-07-231-2/+9
|
* GSP: Implement ReadHWRegs and WriteHWRegs properly.Tony Wasserka2014-07-231-27/+46
|
* Kernel: Added preliminary support for address arbiters.bunnei2014-07-094-9/+134
| | | | | | | | AddressArbiter: Added documentation comment, fixed whitespace issue. AddressArbiter: Fixed incorrect comment, reordered if-statement to be more clear. SVC: Removed trailing whitespace.
* Thread: Added functions to resume threads from address arbitration.bunnei2014-07-092-0/+44
| | | | | | Thread: Cleaned up arbitrate address functions. Thread: Cleaned up ArbitrateAllThreads function.
* function_wrappers: Fixed incorrect wrapper, added another.bunnei2014-07-081-2/+9
|
* SharedMemory: Updated MapSharedMemory to use an enum for permissions.bunnei2014-07-053-16/+36
| | | | - Also added some safety checks to MapSharedMemory.
* GSP: Fixed to use real shared memory object, various cleanups.bunnei2014-07-052-30/+40
| | | | | | | | - Previously, used a hard-coded shared memory handle of 0x10002000 (as used by libctru homebrew) GSP: Added name for shared memory. GSP: Cleaned up assertion message.
* Kernel: Added support for shared memory objects.bunnei2014-07-052-0/+132
| | | | SharedMemory: Added optional name field for tracking known objects.
* Archive: Added Init/Shutdown methods to reset kernel archive state.bunnei2014-07-053-0/+19
|
* FileSys: Added preliminary support for applications reading the RomFS archive.bunnei2014-07-053-13/+135
| | | | | | | | | | Archive: Fixed brace ugliness for neobrain :) FS: Commented out unused local variables to prevent warnings. ...But keeping them here for future use. archive_romfs: Removed unused #include.
* APT: Added stubbed ReceiveParameter and various cleanups.bunnei2014-07-041-71/+93
| | | | | | APT: More cleanups. APT: Changed SignalType to be type u32.
* FS: Added stubbed code to intercept and decode file system service functions.bunnei2014-06-273-0/+154
| | | | FS: Added to CMakeLists.txt
* Kernel: Added stubbed code to support creation of kernel Archive objects.bunnei2014-06-273-0/+85
|
* Merge branch 'threading' of https://github.com/bunnei/citrabunnei2014-06-1424-1124/+1133
|\ | | | | | | | | | | Conflicts: src/core/hle/function_wrappers.h src/core/hle/service/gsp.cpp
| * Kernel: Removed unnecessary "#pragma once".bunnei2014-06-131-2/+0
| |
| * Kernel: Added freeing of kernel objects on emulator shutdown.bunnei2014-06-132-0/+10
| |
| * Event: Updated several log messages to be assertions.bunnei2014-06-131-16/+8
| |
| * HLE: Moved "PARAM" and "RETURN" macros to function_wrappers.h (this is only module where they are needed).bunnei2014-06-132-5/+6
| |
| * SVC: Renamed all function wrapper templates to Wrap, moved to HLE namespace.bunnei2014-06-132-157/+145
| |
| * Thread: Renamed occurrences of "t" to "thread" to improve readability.bunnei2014-06-131-48/+45
| |
| * Thread: Cleaned up VerifyWait, fixed issue where nullptr msg could unnecessarily be logged.bunnei2014-06-131-9/+7
| |
| * HLE: Removed usnused EatCycles function.bunnei2014-06-133-15/+0
| |
| * SVC: Cleaned up function wrappers to pass in correct argument types.bunnei2014-06-132-870/+201
| |
| * Thread: Moved position of * in arguments.bunnei2014-06-131-2/+2
| |
| * Thread: Updated VerifyWait to be more readable (but functionally the same).bunnei2014-06-131-4/+3
| |
| * SVC: Moved declaration of "wait" variable in SendSyncRequest for improved readability.bunnei2014-06-131-1/+1
| |
| * HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)bunnei2014-06-1312-235/+235
| |
| * Kernel: Updated various kernel function "name" arguments to be const references.bunnei2014-06-134-6/+6
| |
| * HLE: Updated various handle debug assertions to be more clear.bunnei2014-06-134-10/+10
| |
| * Mutex: Moved ReleaseMutex iterator declaration to be inside while loop.bunnei2014-06-131-2/+1
| |
| * Kernel: Updated several member functions to be constbunnei2014-06-135-13/+13
| |
| * Thread: Fixed bug with ResetThread where cpu_registers[15] was being incorrectly setbunnei2014-06-131-1/+1
| |
| * Kernel: Made SyncRequest not pure virtual, with a default implementation of error (as this is not required for all kernel objects)bunnei2014-06-133-23/+4
| |
| * Kernel: Added real support for thread and event blockingbunnei2014-06-136-76/+196
| | | | | | | | | | | | | | | | | | | | | | | | | | - SVC: Added ExitThread support - SVC: Added SignalEvent support - Thread: Added WAITTYPE_EVENT for waiting threads for event signals - Thread: Added support for blocking on other threads to finish (e.g. Thread::Join) - Thread: Added debug function for printing current threads ready for execution - Thread: Removed hack/broken thread ready state code from Kernel::Reschedule - Mutex: Moved WaitCurrentThread from SVC to Mutex::WaitSynchronization - Event: Added support for blocking threads on event signalling Kernel: Added missing algorithm #include for use of std::find on non-Windows platforms.
| * hle: added a hokey way to force a thread reschedule during CPU single step mode (as used by the debugger)bunnei2014-06-052-0/+5
| |
| * kernel: changed current default thread priority back to 0x30 - I think this is more correctbunnei2014-06-051-1/+1
| |
| * arm: fixed bug in how thread context switch occurs with SkyEyebunnei2014-06-051-0/+4
| |
| * service: added a error log messages for unimplemented WaitSynchronizationbunnei2014-06-051-0/+1
| |
| * svc: added optional name field to Event and Mutex (used for debugging)bunnei2014-06-036-12/+25
| |
| * kernel: moved position of * for GetTypeName and GetNamebunnei2014-06-031-2/+2
| |
| * coprocessor: reenabled debug logbunnei2014-06-031-1/+1
| |
| * svc: updated WaitSynchronizationN to properly use first pointer argumentbunnei2014-06-022-4/+6
| |
| * svc: changed DuplicateHandle log message from "error" to "debug"bunnei2014-06-021-1/+1
| |
| * svc: added GetThreadPriority and SetThreadPriority, added (incomplete) DuplicateHandle supportbunnei2014-06-023-3/+77
| |
| * kernel: changed main thread priority to default, updated Kernel::Reschedule to use PrepareReschedulebunnei2014-06-026-9/+17
| |
| * svc: cleaned up function_wrappers, updated various SVCs to make use of pointer argumentsbunnei2014-06-022-31/+40
| |
| * svc: added missing function wrapper for SleepThreadbunnei2014-06-011-0/+4
| |
| * gsp: always pass through synchronization barrier for commandsbunnei2014-06-011-1/+16
| |
| * svc: updated waitSychronization to not overwrite handle on return, added stub for SleepThread (does nothing)bunnei2014-06-011-2/+21
| |
| * thread: updated Reschedule to sit at a synchronization barrier when no other threads are ready for executionbunnei2014-06-011-0/+18
| |
| * event: added a hackish ability to set an event as "locked" to its current state, cleaned up some commentsbunnei2014-06-012-4/+32
| |
| * hle: added stubbed service for ndm_ubunnei2014-05-302-0/+65
| |
| * service: cleaned up log messagesbunnei2014-05-301-2/+2
| |
| * service: removed PT_A from, as this was just an alias for APT_Ubunnei2014-05-301-2/+0
| |
| * srv: fix to log unimplemented service (instead of crash)bunnei2014-05-301-6/+2
| |
| * mutex: fixed typo in ReleaseMutexbunnei2014-05-301-1/+3
| |
| * hle: cleaned up log messagesbunnei2014-05-307-42/+47
| |
| * svc: updated OutputDebugString to use OS_LOGbunnei2014-05-301-1/+1
| |
| * svc: changed unimplemented SVC log messages from "debug" messages to "error" messagesbunnei2014-05-301-8/+8
| |
| * svc: added svcClearEvent, stubbed function for svcArbitrateAddress, and various fixesbunnei2014-05-302-22/+38
| | | | | | | | | | | | - force kernel reschedule after svcWaitSynchronization - fixed some bugs with passing in pointer arguments - cleaned up some comments and log messages
| * event: added support for ClearEvent, fixed a bug with CreateEvent, fixed some commentsbunnei2014-05-302-9/+14
| |
| * service: added additional hack to return success on unimplemented service callsbunnei2014-05-301-2/+10
| |
| * srv: changed a NOTICE_LOG to DEBUG_LOGbunnei2014-05-301-1/+1
| |
| * svc: added ArbitrationType enumerationbunnei2014-05-301-0/+9
| |
| * apt: added stubbed function for InquireNotificationbunnei2014-05-291-78/+86
| |
| * hle: properly cast 64-bit function wrapper parameters to (u64)bunnei2014-05-291-2/+2
| |
| * hle: removed PARAM64 macro (this was incorrect), made several bug fixes accordingly for decoding U64 function parametersbunnei2014-05-292-3/+2
| |
| * service: changed interface to return 0 (no error) when a service method is unimplemented - hack to make apps boot furtherbunnei2014-05-291-2/+2
| |
| * APT_U: added stubbed function for APT_U::Enable, fixed some log messages to be more consistentbunnei2014-05-281-3/+10
| |
| * mutex: added preliminary SyncRequest/WaitSynchronization, added some comments/assertionsbunnei2014-05-281-0/+6
| |
| * svc: implemented WaitSynchronization1, WaitSynchronizationN, and CreateEventbunnei2014-05-281-14/+54
| |
| * APT_U: added event creation to Initialize methodbunnei2014-05-281-1/+11
| |
| * event: fixed typos and updated CMakeListsbunnei2014-05-281-1/+1
| |
| * event: added SetEventLocked method to change status an events lockbunnei2014-05-282-0/+18
| |
| * kernel: added event module to support creation of CTR "Event" objectsbunnei2014-05-282-0/+119
| |
| * mutex: removed docstring comment that is no longer relevantbunnei2014-05-271-1/+0
| |
| * mutex: added additional docstringsbunnei2014-05-271-0/+2
| |
| * kernel: added WaitSynchronization method to Kernel::Objectbunnei2014-05-274-0/+39
| |
| * kernel: updated SyncRequest to take boolean thread wait result as a parameterbunnei2014-05-275-10/+33
| |
| * svc: added some assertionsbunnei2014-05-271-6/+4
| |
| * service: Renamed Sync to SyncRequestbunnei2014-05-271-1/+1
| |
| * kernel: added enum for known CurrentThread and CurrentProcess handlesbunnei2014-05-271-0/+5
| |
| * srv: added a real mutex for GetProcSemaphore (instead of stubbed)bunnei2014-05-271-3/+10
| |
| * svc: changed SendSyncRequest to use Kernel::Object SyncRequest (instead of just service Interface class)bunnei2014-05-271-2/+2
| |
| * kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequestbunnei2014-05-274-6/+11
| |
| * svc: added stub for DuplicateHandle SVC callbunnei2014-05-271-1/+8
| |
* | GPU debugger: Add functionality to inspect command lists.Tony Wasserka2014-06-121-0/+4
| |
* | GPU: Cleanup register definitions.Tony Wasserka2014-06-121-3/+3
| |
* | Rename LCD to GPU.Tony Wasserka2014-06-121-8/+8
| |
* | Add initial graphics debugger interface.Tony Wasserka2014-06-121-0/+6
| |
* | GSP: Define more GX commands.Tony Wasserka2014-06-122-14/+54
| |
* | service: fixed typo that MSVC did not catch as an errorbunnei2014-05-231-1/+1
| |
* | Merge branch 'threading'bunnei2014-05-2321-131/+1124
|\|
| * svc: added a check to ensure that a service was implemented before attempting to connect to its portbunnei2014-05-231-1/+5
| |
| * thread: renamed "WaitCurThread" to "WaitCurrentThread", removed unused "reason" argumentbunnei2014-05-233-6/+6
| |
| * thread: removed unused SwitchContext/Reschedule reason field, added missing arg parameter to SVC CreateThreadbunnei2014-05-233-12/+9
| |
| * kernel: refactored function naming to remove "__" prefixbunnei2014-05-235-62/+72
| |
| * thread: moved ThreadStatus/WaitType to header, added support for arg on CreateThread, added correct CPSR resetbunnei2014-05-232-35/+40
| |
| * APT_U: added a debug log on calling GetLockHandlebunnei2014-05-231-0/+1
| |
| * thread: fixed bug where result of __NextThread was not being properly checked when NULLbunnei2014-05-221-1/+1
| |
| * svc: added Kernel::Reschedule to svc WaitSynchronization1, updated log messages to include newly created handlesbunnei2014-05-221-4/+7
| |
| * svc: enabled use of newly created kernel thread handlebunnei2014-05-211-5/+5
| |
| * mutex: refactored the interface to code to return a Mutex* handlebunnei2014-05-214-5/+16
| |
| * mutex: initial commit of HLE modulebunnei2014-05-214-10/+157
| |
| * svc: added some commentsbunnei2014-05-211-0/+7
| |
| * kernel: fixed include, in general include "common.h" not "common_types.h"bunnei2014-05-211-1/+1
| |
| * service: removed redundant include of common_types.hbunnei2014-05-211-1/+0
| |
| * thread: added correct lowest thread priority, added a thread priority check, and added some commentsbunnei2014-05-212-6/+10
| |
| * thread: exposed ResumeThreadFromWait function for use in other kernel modulesbunnei2014-05-212-8/+11
| |
| * thread: moved threading calls to the Kernel namespacebunnei2014-05-214-103/+117
| |
| * ARM_Interface: added SaveContext and LoadContext functions for HLE thread switchingbunnei2014-05-211-36/+2
| |
| * renamed "syscall" module to "svc" (more accurate naming)bunnei2014-05-216-17/+19
| |
| * thread: whitespace change - fixed * and & placementbunnei2014-05-212-27/+27
| |
| * - created a Kernel namespacebunnei2014-05-216-75/+87
| | | | | | | | | | - cleaned up Kernel code a bit (moved stuff into namespace, fixed whitespace issues) - added handle types for all different CTROS handles
| * apt: changed stubbed handle to be something other than 0xDEADBEEF (used as a magic value in other places) so that I can track how it propagates through the app codebunnei2014-05-201-1/+1
| |
| * thread: added declaration for __KernelReschedule to be used by syscall modulebunnei2014-05-201-0/+3
| |
| * renamed "session" to "handle"bunnei2014-05-191-3/+3
| |
| * - renamed NewHandle to CreateHandlebunnei2014-05-192-8/+8
| | | | | | | | - updated CreateHandle/DeleteHandle to use KernelObject's
| * fix warningbunnei2014-05-191-1/+1
| |
| * - updated service(s) to be KernelObject'sbunnei2014-05-197-59/+31
| | | | | | | | - various cleanups
| * renamed "UID" to "Handle" where appropriatebunnei2014-05-194-24/+22
| |
| * - moved Handle/Result definitions to kernel.hbunnei2014-05-196-14/+19
| | | | | | | | - added ResetType enum
| * - added stub for CreateEventbunnei2014-05-181-8/+22
| | | | | | | | - changed some stubbed SVCs to return unique handle names for debugging purposes
| * added stubbed function for WaitSynchronizationNbunnei2014-05-182-4/+19
| |
| * changed a commentbunnei2014-05-172-2/+2
| |
| * cleanups to SVC CreateThreadbunnei2014-05-171-8/+15
| |
| * - added enum ThreadProcessorIdbunnei2014-05-172-53/+107
| | | | | | | | | | - reorganized some kernel thread functions - added placeholder __KernelWaitThread_Synchronization function
| * - replaced KERNELOBJECT_MAX_NAME_LENGTH with KERNEL_MAX_NAME_LENGTHbunnei2014-05-173-8/+12
| | | | | | | | - added KERNEL_DEFAULT_STACK_SIZE definition (0x4000)
| * added stubbed GetProcSemaphore - does nothing but avoids an exceptionbunnei2014-05-171-1/+7
| |
| * updated APT_U::GetLockHandle to return a valid handlebunnei2014-05-171-1/+5
| |
| * Merge master into threading to add support for VFPbunnei2014-05-172-21/+2
| |\
| * | - added SVC stubs for QueryMemory and GetThreadIdbunnei2014-05-163-2/+30
| | | | | | | | | | | | - added SVC structs MemoryInfo and PageInfo
| * | completely gutted/refactored threading code to be simplerbunnei2014-05-162-658/+230
| | |
| * | changed "UID" to "Handle" to be a little more consistent with CTR namingbunnei2014-05-162-18/+21
| | |
| * | - added ThreadContext structbunnei2014-05-162-8/+26
| | | | | | | | | | | | - cleaned up CreateThread svc
| * | - added helper function for __KernelCreateThreadbunnei2014-05-152-4/+76
| | | | | | | | | | | | | | | - added __KernelSwitchToThread for enabling a thread - added __KernelRotateThreadReadyQueue
| * | changed primary thread priority to 0x30 - this is typical, not 0x31bunnei2014-05-151-1/+2
| | |
| * | added function stubs for EatCycles and ReSchedulebunnei2014-05-152-0/+15
| | |
| * | fixed thread reset to not set stack addressbunnei2014-05-141-1/+1
| | |
| * | various cleanups / remove unused codebunnei2014-05-142-65/+29
| | |
| * | added a bunch of threading code, recycled from PPSSPP, with lots of hacks in for 3DS... doesn't really do much yet. Just a jumping off pointbunnei2014-05-142-70/+543
| | |
| * | added CreateThread, CreateMutex, and ReleaseMutex SVC stubs (just parameter decoding for now)bunnei2014-05-142-7/+38
| | |
| * | - added __KernelLoadExec functionbunnei2014-05-142-13/+35
| | | | | | | | | | | | - fixed some logging
| * | added initial kernel/thread modulesbunnei2014-05-104-0/+527
| | |
* | | Merge remote-tracking branch 'upstream/master' into issue-7-fixarchshift2014-05-1713-282/+403
|\ \ \ | | |/ | |/|
| * | - reenabled MCR and MRC functions now that VFP is attachedbunnei2014-05-172-21/+2
| |/ | | | | | | - removed HLE::CallMCR function (was pointless)
| * removed unknown fields from GX_CmdBufferHeaderbunnei2014-05-081-5/+0
| |
| * removed unnecessary log messagebunnei2014-05-081-1/+1
| |
| * - removed HLE mem "hack" and replaced with kernel mem regionbunnei2014-05-087-105/+89
| | | | | | | | | | - added a helper function for getting command buffer for services - fixed bug where GSP DMA was incorrectly being done in DataSynchronizationBarrier (instead of gsp_TriggerCmdReqQueue)
| * - added debug logging to syscall.cppbunnei2014-05-072-135/+173
| | | | | | | | - added stubbed HLE syscall functions for svc_GetResourceLimit and svc_GetResourceLimitCurrentValues
| * added config_mem module for HLE of firmware configuration memory settingsbunnei2014-05-072-0/+91
| |
| * - added CallMCR function to coprocessor HLE modulebunnei2014-05-022-7/+20
| | | | | | | | - moved instruction decoding to coprocessor HLE module
| * fixed include in coprocessor.cppbunnei2014-05-021-1/+1
| |
| * renamed hle "mrc" module to "coprocessor"bunnei2014-05-022-0/+0
| |
| * - added some function wrappers for HLEbunnei2014-05-022-10/+29
| | | | | | | | | | - added stub for SVC CreateAddressArbiter - added OutputDebugString SVC
* | Problematic template functionsarchshift2014-04-281-15/+0
|/
* removed DISALLOW_COPY_AND_ASSIGN in favor of NonCopyable classbunnei2014-04-283-9/+0
|
* fixed weird spacingbunnei2014-04-281-1/+1
|
* hackish but working way to set the framebuffer location to VRAM (used in ARM11 demos tested thus far, e.g. yeti3DS)bunnei2014-04-271-3/+9
|
* added simple GSP GPU ReadHWRegs function to support returning the framebuffer addressbunnei2014-04-261-1/+37
|
* added preliminary DataSynchronizationBarrier support with simple DMA copybunnei2014-04-261-7/+39
|
* moved HLE::MRC to its own module, added support for catching data synchronization barrier commandbunnei2014-04-254-10/+52
|
* fixed bug where svc_ControlMemory was not properly getting passed in parametersbunnei2014-04-251-2/+2
|
* - added preliminary support for svc_MapMemoryBlockbunnei2014-04-251-4/+34
| | | | | - added shared memory region - moarrrr cleanups to memory_map
* added GSP::RegisterInterruptRelayQueue functionbunnei2014-04-251-31/+40
|
* - refactored how service functions are calledbunnei2014-04-255-19/+39
| | | | - added option to create/delete service handles
* renamed hw_lcd module to just lcdbunnei2014-04-181-2/+0
|
* added GSP heap memory allocationbunnei2014-04-181-1/+25
|
* added a new function wrapperbunnei2014-04-171-0/+5
|
* fixed bug with printing std::string in log messagesbunnei2014-04-171-2/+2
|
* added class stub for HID:User servicebunnei2014-04-173-0/+72
|
* updated service commentsbunnei2014-04-176-5/+17
|
* - fixed tabs in function_wrappers.hbunnei2014-04-174-395/+413
| | | | | - fixed log message wording in hle.cpp - added syscall stubs for CloseHandle and WaitSynchronization1
* - added stubbed out GSP::Gpu service interfacebunnei2014-04-167-7/+103
| | | | - various cleanups/refactors to HLE services
* removed no longer used function headerbunnei2014-04-161-2/+0
|
* restructured hle:services completely to use function lookup tablesbunnei2014-04-165-137/+215
|
* fixed naming for APT_Ubunnei2014-04-163-9/+9
|
* - extracted srv: calls from service.cpp and put in its own modulebunnei2014-04-164-106/+105
| | | | | - added function tables for service calls - lots of refactoring
* added a stub for GetLockHandlebunnei2014-04-143-9/+44
|
* added framework for APT service (application and title launching service)bunnei2014-04-135-5/+118
|
* renamed class Interface_SRV to SRVbunnei2014-04-131-6/+6
|
* added some very initial command parsing for SRV Syncbunnei2014-04-131-5/+31
|
* added a GetPointer function for reading from HLE command bufferbunnei2014-04-132-0/+14
|
* added OS memory read/write for thread command bufferbunnei2014-04-132-3/+55
|
* cleanups to service HLEbunnei2014-04-132-8/+8
|
* - added HLE to connect to "srv:" servicebunnei2014-04-135-130/+328
| | | | | | - added a manager for keeping track of services/ports - added a memory mapped region for memory accessed by HLE - added HLE for GetThreadCommandBuffer function
* - renamed hle_syscall to just syscallbunnei2014-04-125-101/+145
| | | | - added service.h as an initial service interface
* replace tabs with spacesbunnei2014-04-121-6/+6
|
* moved hle.cpp into hle folder (due to mistake earlier)bunnei2014-04-121-0/+57
|
* added remaining known syscall functions to Syscall_Tablebunnei2014-04-111-0/+80
|
* base code to call a syscall from ARM11 appcorebunnei2014-04-113-7/+56
|
* changed some naming/misc cleanupsbunnei2014-04-113-18/+17
|
* - removed syscall classes (will just use HLEFunction)bunnei2014-04-113-15/+17
| | | | | - added hle.cpp and module registration - removed unused code
* added initial modules for setting up SysCall HLEbunnei2014-04-114-0/+825