Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Mutex: Locks should be recursive. | bunnei | 2015-02-10 | 2 | -16/+20 |
| | |||||
* | WaitSynch: Always reschedule (verified behavior on hw). | bunnei | 2015-02-10 | 1 | -4/+4 |
| | |||||
* | core: Fix some warnings on OSX | Lioncash | 2015-02-03 | 1 | -1/+0 |
| | |||||
* | Kernel: Stop creating useless Handles during object creation | Yuri Kunde Schlesner | 2015-02-02 | 18 | -57/+41 |
| | | | | | They're finally unnecessary, and will stop cluttering the application's handle table. | ||||
* | Kernel: Make WaitObjects share ownership of Threads waiting on them | Yuri Kunde Schlesner | 2015-02-02 | 6 | -12/+17 |
| | | | | | | | | | | | | | | | | During normal operation, a thread waiting on an WaitObject and the object hold mutual references to each other for the duration of the wait. If a process is forcefully terminated (The CTR kernel has a SVC to do this, TerminateProcess, though no equivalent exists for threads.) its threads would also be stopped and destroyed, leaving dangling pointers in the WaitObjects. The solution is to simply have the Thread remove itself from WaitObjects when it is stopped. The vector of Threads in WaitObject has also been changed to hold SharedPtrs, just in case. (Better to have a reference cycle than a crash.) | ||||
* | Explicitly instantiate constructors/destructors for Kernel objects | Yuri Kunde Schlesner | 2015-02-02 | 16 | -8/+50 |
| | | | | | | This should speed up compile times a bit, as well as enable more liberal use of forward declarations. (Due to SharedPtr not trying to emit the destructor anymore.) | ||||
* | Mutex: Replace g_mutex_held_locks with a set inside Thread | Yuri Kunde Schlesner | 2015-02-02 | 3 | -23/+18 |
| | |||||
* | HID: Fix crash when pressing a key when the emulator is stopped | Yuri Kunde Schlesner | 2015-02-02 | 1 | -0/+2 |
| | |||||
* | SVC: Enable CloseHandle, clean up DuplicateHandle | Yuri Kunde Schlesner | 2015-02-02 | 1 | -9/+5 |
| | |||||
* | Kernel: Fix bug in HandleTable::Close | Yuri Kunde Schlesner | 2015-02-02 | 1 | -1/+1 |
| | |||||
* | Kernel: Remove Object::GetHandle (it's not used anymore :D) | Yuri Kunde Schlesner | 2015-02-02 | 2 | -9/+1 |
| | |||||
* | Kernel: Introduce unique Object ids for debugging | Yuri Kunde Schlesner | 2015-02-02 | 4 | -8/+16 |
| | |||||
* | Kernel: Use separate Handle tables for CoreTiming userdata | Yuri Kunde Schlesner | 2015-02-02 | 4 | -18/+25 |
| | | | | This is to support the removal of GetHandle soon | ||||
* | Kernel: Remove previous scheduled event when a Timer is re-Set | Yuri Kunde Schlesner | 2015-02-02 | 1 | -0/+3 |
| | |||||
* | FS: Remove use of GetHandle | Yuri Kunde Schlesner | 2015-02-02 | 1 | -1/+1 |
| | |||||
* | Thread: Modernize two functions that slipped through previous rebases | Yuri Kunde Schlesner | 2015-02-02 | 4 | -18/+16 |
| | |||||
* | Service: Store function names as const char* instead of std::string | Yuri Kunde Schlesner | 2015-02-02 | 1 | -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 Interface | Yuri Kunde Schlesner | 2015-02-02 | 46 | -67/+54 |
| | |||||
* | Make Port/Service registration and querying more HW-accurate | Yuri Kunde Schlesner | 2015-02-02 | 4 | -106/+80 |
| | |||||
* | Filesys: Move creation of Handles for File/Directory to service handlers | Yuri Kunde Schlesner | 2015-02-02 | 3 | -32/+33 |
| | |||||
* | arm: Clean up ARMul_State | Lioncash | 2015-02-01 | 1 | -1/+1 |
| | | | | Remove unnecessary/unused struct variables. | ||||
* | Merge pull request #512 from lioncash/assignment | Tony Wasserka | 2015-01-31 | 2 | -4/+4 |
|\ | | | | | shared_memory: Fix assignments in SharedMemory::Map | ||||
| * | shared_memory: Fix assignments in SharedMemory::Map | Lioncash | 2015-01-30 | 2 | -4/+4 |
| | | |||||
* | | archive: Fix initializer list order for the File class. | Lioncash | 2015-01-30 | 1 | -1/+1 |
| | | |||||
* | | apt_u: Fix missing printf specifiers | Lioncash | 2015-01-30 | 1 | -2/+2 |
|/ | |||||
* | Kernel: Mark all appropriate kernel objects as "final" | Yuri Kunde Schlesner | 2015-01-30 | 7 | -8/+7 |
| | |||||
* | SVC: Use CASCADE_RESULT in SVC handlers | Yuri Kunde Schlesner | 2015-01-30 | 2 | -77/+32 |
| | |||||
* | Remove result.h InvalidHandle | Yuri Kunde Schlesner | 2015-01-30 | 4 | -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 ResultCode | Yuri Kunde Schlesner | 2015-01-30 | 2 | -132/+127 |
| | |||||
* | Kernel: Convert Event to not use Handles | Yuri Kunde Schlesner | 2015-01-30 | 10 | -152/+151 |
| | |||||
* | Kernel: Convert Timer to (mostly) not use Handles | Yuri Kunde Schlesner | 2015-01-30 | 3 | -111/+112 |
| | |||||
* | Kernel: Convert Mutex to not use Handles | Yuri Kunde Schlesner | 2015-01-30 | 5 | -114/+110 |
| | |||||
* | Kernel: Convert AddressArbiter to not use Handles | Yuri Kunde Schlesner | 2015-01-30 | 3 | -38/+55 |
| | |||||
* | Kernel: Convert Semaphore to not use Handles | Yuri Kunde Schlesner | 2015-01-30 | 3 | -67/+88 |
| | |||||
* | Kernel: Convert SharedMemory to not use Handles | Yuri Kunde Schlesner | 2015-01-30 | 8 | -102/+107 |
| | |||||
* | Additions to ResultVal to make it more convenient to use. | Yuri Kunde Schlesner | 2015-01-30 | 1 | -1/+25 |
| | |||||
* | Move VAddr/PAddr typedefs to kernel.h | Yuri Kunde Schlesner | 2015-01-30 | 1 | -0/+5 |
| | |||||
* | Kernel: Remove useless/duplicated comments; mark functions static | Yuri Kunde Schlesner | 2015-01-30 | 6 | -32/+8 |
| | |||||
* | Merge pull request #412 from purpasmart96/svc_table_cleanup | bunnei | 2015-01-28 | 1 | -7/+7 |
|\ | | | | | SVC: Update the SVC function table | ||||
| * | SVC: Update the SVC function table | purpasmart96 | 2015-01-27 | 1 | -7/+7 |
| | | |||||
* | | Merge pull request #345 from purpasmart96/apt_stubs | bunnei | 2015-01-27 | 1 | -91/+276 |
|\ \ | | | | | | | APT_U: Stub some functions & misc changes | ||||
| * | | APT_U: Stub some functions & misc changes | purpasmart96 | 2015-01-23 | 1 | -91/+276 |
| | | | |||||
* | | | Merge pull request #485 from Subv/more_servs | bunnei | 2015-01-26 | 18 | -1/+393 |
|\ \ \ | | | | | | | | | Services: Stubbed more services. | ||||
| * | | | Services/HID: Removed some files due to a rebase error | Subv | 2015-01-24 | 3 | -267/+0 |
| | | | | |||||
| * | | | Services: Stubbed more services. | Subv | 2015-01-24 | 21 | -1/+660 |
| | | | | | | | | | | | | | | | | Implemented FSUser::CreateExtSaveData | ||||
* | | | | cam_u.h: fix indentation | archshift | 2015-01-22 | 1 | -2/+2 |
|/ / / | | | | | | | Withholding my profanity towards Xcode. | ||||
* | | | Merge pull request #493 from archshift/ptmplay | bunnei | 2015-01-22 | 5 | -0/+102 |
|\ \ \ | | | | | | | | | Stubbed some services | ||||
| * | | | Stubbed cam:u service | archshift | 2015-01-21 | 3 | -0/+49 |
| | | | | |||||
| * | | | Stubbed ptm:play service | archshift | 2015-01-21 | 3 | -0/+53 |
| | | | | |||||
* | | | | WaitSynchronization: Added a result code for invalid result, fixed bug. | bunnei | 2015-01-22 | 1 | -3/+9 |
| | | | | |||||
* | | | | Thread: Fix WaitSynchronization1 to not set register 1 on thread wakeup. | bunnei | 2015-01-22 | 3 | -25/+45 |
| | | | | |||||
* | | | | Thread: Use std::find in CheckWait_WaitObject. | bunnei | 2015-01-22 | 1 | -4/+5 |
| | | | | |||||
* | | | | Mutex: Cleanup and remove redundant code. | bunnei | 2015-01-22 | 3 | -47/+29 |
| | | | | |||||
* | | | | Kernel: Renamed some functions for clarity. | bunnei | 2015-01-22 | 7 | -10/+10 |
| | | | | | | | | | | | | | | | | | | | | - ReleaseNextThread->WakeupNextThread - ReleaseAllWaitingThreads->WakeupAllWaitingThreads. | ||||
* | | | | Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void. | bunnei | 2015-01-22 | 9 | -71/+42 |
| | | | | |||||
* | | | | WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" pure virtual. | bunnei | 2015-01-22 | 9 | -23/+22 |
| | | | | |||||
* | | | | Event: Fix implementation of "non-sticky" events. | bunnei | 2015-01-22 | 1 | -0/+4 |
| | | | | |||||
* | | | | Session: Change to a WaitObject. | bunnei | 2015-01-22 | 3 | -2/+9 |
| | | | | |||||
* | | | | Kernel: Reschedule on SignalEvent and SendSyncRequest, fix some bugs. | bunnei | 2015-01-22 | 2 | -1/+2 |
| | | | | |||||
* | | | | Mutex: Fix a bug where the thread should not wait if it already has the mutex. | bunnei | 2015-01-22 | 1 | -1/+4 |
| | | | | |||||
* | | | | Kernel: Moved Wait and Acquire to WaitObject, added way to retrieve a WaitObject safely. | bunnei | 2015-01-22 | 4 | -20/+59 |
| | | | | |||||
* | | | | SVC: Removed a Sleep that made no sense | bunnei | 2015-01-22 | 1 | -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. | bunnei | 2015-01-22 | 5 | -38/+45 |
| | | | | |||||
* | | | | Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks. | bunnei | 2015-01-22 | 9 | -122/+63 |
| | | | | |||||
* | | | | WaitSynchronizationN: Improved comments | bunnei | 2015-01-22 | 1 | -7/+12 |
| | | | | |||||
* | | | | WaitSynchronizationN: Refactor to fix several bugs | bunnei | 2015-01-22 | 8 | -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. | bunnei | 2015-01-22 | 8 | -18/+59 |
| | | | | |||||
* | | | | WaitSynchronizationN: Handle case where handles=nullptr. | bunnei | 2015-01-22 | 1 | -0/+4 |
| | | | | |||||
* | | | | WaitSynchronizationN: Handle case where handle_count is invalid. | bunnei | 2015-01-22 | 1 | -3/+7 |
| | | | | |||||
* | | | | WaitSynchronizationN: Handle case where handle_count=0. | bunnei | 2015-01-22 | 1 | -19/+29 |
| | | | | |||||
* | | | | WaitSynchronizationN: Implement return values | bunnei | 2015-01-22 | 10 | -83/+189 |
| | | | | |||||
* | | | | Event: Fixed some bugs and cleanup (Subv) | bunnei | 2015-01-22 | 4 | -57/+16 |
| | | | | |||||
* | | | | Thread: Keep track of multiple wait objects. | bunnei | 2015-01-22 | 3 | -16/+30 |
| | | | | |||||
* | | | | Event: Get rid of permanent_lock hack. | bunnei | 2015-01-22 | 2 | -36/+8 |
| | | | | |||||
* | | | | WaitObject: Added RemoveWaitingThread, fixed a bug, and cleanup. | bunnei | 2015-01-22 | 2 | -4/+17 |
| | | | | |||||
* | | | | Kernel: Added WaitObject and changed "waitable" objects inherit from it. | bunnei | 2015-01-22 | 8 | -71/+73 |
| | | | | |||||
* | | | | Added HID_SPVR service and split HID_U implementation into service/hid/hid.xxx | archshift | 2015-01-21 | 9 | -217/+327 |
|/ / / | |||||
* | | | core: Fix a few docstrings | Lioncash | 2015-01-20 | 4 | -4/+4 |
| | | | |||||
* | | | Merge pull request #492 from archshift/apt | bunnei | 2015-01-20 | 2 | -1/+4 |
|\ \ \ | | | | | | | | | Expose GetSharedFont and NotifyToWait to APT:A and APT:S respectively | ||||
| * | | | Expose GetSharedFont and NotifyToWait to APT:A and APT:S respectively | archshift | 2015-01-19 | 2 | -1/+4 |
| |/ / | |||||
* | | | Merge pull request #383 from zhuowei/shared_page | bunnei | 2015-01-19 | 3 | -0/+109 |
|\ \ \ | |/ / |/| | | Add some support for the shared page | ||||
| * | | Add some support for the shared page (currently 3d slider is implemented) | Zhuowei Zhang | 2015-01-16 | 3 | -0/+109 |
| | | | |||||
* | | | APT: Fix typo in setting return code for NotifyToWait | bunnei | 2015-01-16 | 1 | -1/+1 |
| | | | |||||
* | | | DSP: Removed useless spam log for SignalInterrupt | bunnei | 2015-01-16 | 1 | -5/+2 |
| | | | |||||
* | | | Merge pull request #482 from yuriks/fix-vblank | bunnei | 2015-01-16 | 2 | -35/+25 |
|\ \ \ | | | | | | | | | Correctness fixes for GPU flipping and interrupts | ||||
| * | | | GSP: Fix appending of interrupts to the shared memory buffer | Yuri Kunde Schlesner | 2015-01-14 | 2 | -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 interrupts | Yuri Kunde Schlesner | 2015-01-14 | 1 | -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 Schlesner | 2015-01-14 | 1 | -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_b | bunnei | 2015-01-15 | 1 | -7/+21 |
|\ \ \ \ | | | | | | | | | | | APTU: Stubbed NotifyToWait, taken from 3dmoo. | ||||
| * | | | | APT: Fixed the comment style in some variables | Sebastian Valle | 2015-01-14 | 1 | -2/+2 |
| | | | | | |||||
| * | | | | APTU: Stubbed NotifyToWait, taken from 3dmoo. | Subv | 2015-01-14 | 1 | -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_2 | bunnei | 2015-01-14 | 3 | -4/+21 |
|\ \ \ \ | |/ / / |/| | | | AddrArbiter: Implement arbitration types 3 and 4. | ||||
| * | | | AddrArbiter: Implement arbitration types 3 and 4. | Subv | 2015-01-13 | 3 | -4/+21 |
| | |/ | |/| | |||||
* / | | Services: Added some missing services. | Subv | 2015-01-13 | 8 | -1/+358 |
|/ / | | | | | | | | | cfg:s, ptm:sysm, apt:s. apt:s is almost exactly the same as apt:u as per 3dbrew | ||||
* | | Fix building on MinGW | darkf | 2015-01-12 | 1 | -0/+13 |
| | | |||||
* | | Merge pull request #456 from Subv/waitsync1 | bunnei | 2015-01-12 | 1 | -3/+2 |
|\ \ | | | | | | | SVC: Wake up the thread after the delay in WaitSync1 | ||||
| * | | SVC: Wake up the thread after the delay in WaitSync1 | Subv | 2015-01-11 | 1 | -3/+2 |
| | | | |||||
* | | | Merge pull request #466 from Subv/wake | bunnei | 2015-01-11 | 1 | -0/+3 |
|\ \ \ | |/ / |/| | | Thread: Prevent waking a thread multiple times. | ||||
| * | | Thread: Prevent waking a thread multiple times. | Subv | 2015-01-11 | 1 | -0/+3 |
| | | | | | | | | | | | | If a thread was woken up by something, cancel the wakeup timeout. | ||||
* | | | Stubbed y2r:u IsBusyConversion | archshift | 2015-01-11 | 1 | -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. | archshift | 2015-01-10 | 1 | -3/+3 |
| | | | |||||
* | | | Logging: Log all called service functions (under trace). Compile out all trace logs under release for performance. | archshift | 2015-01-10 | 9 | -33/+22 |
| | | | |||||
* | | | Kernel: Start using boost::intrusive_ptr for lifetime management | Yuri Kunde Schlesner | 2015-01-09 | 12 | -90/+95 |
| | | | |||||
* | | | Kernel: Don't re-assign object's handle when duplicating one | Yuri Kunde Schlesner | 2015-01-09 | 2 | -2/+3 |
|/ / | |||||
* | | Merge pull request #444 from yuriks/handle-reform2 | bunnei | 2015-01-09 | 15 | -360/+289 |
|\ \ | | | | | | | Kernel Lifetime Reform Pt. 2 | ||||
| * | | Thread: Fix nullptr access in a logging function | Yuri Kunde Schlesner | 2015-01-09 | 1 | -1/+2 |
| | | | |||||
| * | | Thread: Rename thread_queue => thread_list | Yuri Kunde Schlesner | 2015-01-09 | 1 | -6/+6 |
| | | | |||||
| * | | Thread: Reduce use of Handles and move some funcs to inside the class. | Yuri Kunde Schlesner | 2015-01-09 | 10 | -301/+221 |
| | | | |||||
| * | | Kernel: Move Thread's definition to the header file | Yuri Kunde Schlesner | 2015-01-09 | 3 | -53/+67 |
| | | | |||||
| * | | Move ThreadContext to core/core.h and deal with the fallout | Yuri Kunde Schlesner | 2015-01-09 | 8 | -19/+13 |
| | | | |||||
* | | | Merge pull request #436 from kevinhartman/system-core | bunnei | 2015-01-09 | 1 | -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 Hartman | 2015-01-07 | 1 | -0/+5 |
| | | | |||||
* | | | Merge pull request #255 from Subv/cbranch_3 | bunnei | 2015-01-09 | 7 | -5/+232 |
|\ \ \ | | | | | | | | | Implemented timers | ||||
| * | | | SVC: Implemented the Timer service calls. | Subv | 2015-01-09 | 7 | -5/+232 |
| | | | | |||||
* | | | | SVC: Fixed SleepThread. | Subv | 2015-01-09 | 3 | -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. | Subv | 2015-01-08 | 3 | -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-fixes | bunnei | 2015-01-08 | 1 | -1/+4 |
|\ \ \ | | | | | | | | | GPU: Toggle active framebuffer each frame | ||||
| * | | | GSP: Toggle active framebuffer each frame | bunnei | 2015-01-08 | 1 | -1/+4 |
| | | | | |||||
* | | | | Merge pull request #431 from yuriks/thread-queue-cleanup | bunnei | 2015-01-07 | 1 | -1/+1 |
|\ \ \ \ | |_|/ / |/| | | | Common: Clean up ThreadQueueList | ||||
| * | | | Common: Clean up ThreadQueueList | Yuri Kunde Schlesner | 2015-01-07 | 1 | -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 shutdown | Yuri Kunde Schlesner | 2015-01-07 | 2 | -25/+4 |
|/ / | | | | | | | Fixes #423. | ||||
* | | Merge pull request #376 from Subv/arc_reorder | bunnei | 2015-01-07 | 4 | -18/+23 |
|\ \ | |/ |/| | Archives: Change the folder layout of some archives. | ||||
| * | Archives: Changed the unimplemented archives comment. | Subv | 2015-01-06 | 1 | -1/+1 |
| | | | | | | | | It now refers to me as the PoC | ||||
| * | Archives: Addressed some comments | Subv | 2015-01-06 | 1 | -2/+2 |
| | | |||||
| * | Archives: Make SYSTEM_ID and SDCARD_ID strings | Subv | 2015-01-04 | 2 | -4/+4 |
| | | |||||
| * | Archives: Changed the way paths are built for the archives. | Subv | 2015-01-04 | 4 | -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. | Subv | 2015-01-03 | 2 | -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_clean | bunnei | 2015-01-06 | 7 | -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 names | purpasmart96 | 2015-01-06 | 7 | -33/+36 |
| | | | |||||
* | | | Merge pull request #272 from rohit-n/sign-compare | bunnei | 2015-01-06 | 1 | -4/+4 |
|\ \ \ | | | | | | | | | Silence some -Wsign-compare warnings. | ||||
| * | | | Silence some -Wsign-compare warnings. | Rohit Nirmal | 2015-01-01 | 1 | -4/+4 |
| |/ / | |||||
* | | | DSP: Signal (faked) interrupt on every frame. | bunnei | 2015-01-05 | 2 | -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/arbiter | bunnei | 2015-01-05 | 1 | -0/+11 |
|\ \ \ | | | | | | | | | AddressArbiter: Ported arbitration type 2 from 3dmoo. | ||||
| * | | | AddressArbiter: Ported arbitration type 2 from 3dmoo. | Subv | 2015-01-03 | 1 | -0/+11 |
| | |/ | |/| | | | | | | | (Thanks 3dmoo!) | ||||
* | | | Merge pull request #408 from Subv/mutex | bunnei | 2015-01-05 | 1 | -2/+2 |
|\ \ \ | | | | | | | | | Mutex: Add the calling thread to the waiting list when needed | ||||
| * | | | Mutex: Add the calling thread to the waiting list when needed | Subv | 2015-01-04 | 1 | -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/y2ru | bunnei | 2015-01-05 | 3 | -0/+70 |
|\ \ \ | |/ / |/| | | Stub the y2r:u service | ||||
| * | | Stub the y2r:u service | archshift | 2015-01-03 | 3 | -0/+70 |
| |/ | |||||
* | | Archives: Reduced duplicate code in RomFS and SaveCheck. | Subv | 2015-01-03 | 2 | -4/+5 |
| | | | | | | | | Fixed a few warnings and cleaned up the code | ||||
* | | SaveDataCheck: Preliminary work in this archive. | Subv | 2015-01-03 | 2 | -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/pedantic | bunnei | 2015-01-03 | 1 | -3/+3 |
|\ \ | | | | | | | archive/elf: Minor misc changes. | ||||
| * | | archive: Fix initializer list order | Lioncash | 2015-01-03 | 1 | -3/+3 |
| |/ | |||||
* / | soc_u: Fix a missing formatting argument | Lioncash | 2015-01-03 | 1 | -1/+1 |
|/ | |||||
* | SOC_U: Preliminary implementation of sockets. | Subv | 2014-12-31 | 4 | -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 changes | Subv | 2014-12-30 | 1 | -12/+12 |
| | |||||
* | Archives: Implemented ExtSaveData and SharedExtSaveData | Subv | 2014-12-30 | 5 | -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 manager | Yuri Kunde Schlesner | 2014-12-28 | 13 | -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 constants | Yuri Kunde Schlesner | 2014-12-28 | 8 | -15/+15 |
| | |||||
* | Rename ObjectPool to HandleTable | Yuri Kunde Schlesner | 2014-12-28 | 12 | -54/+54 |
| | |||||
* | Merge pull request #339 from bunnei/fixup-gsp-synch | bunnei | 2014-12-26 | 1 | -0/+8 |
|\ | | | | | Fixup gsp synch | ||||
| * | ARM: Add a mechanism for faking CPU time elapsed during HLE. | bunnei | 2014-12-26 | 1 | -0/+8 |
| | | | | | | | | - Also a few cleanups. | ||||
* | | Merge pull request #330 from purpasmart96/new_srv | bunnei | 2014-12-26 | 60 | -305/+355 |
|\ \ | | | | | | | More services & small clean ups | ||||
| * | | More services & small clean ups | purpasmart96 | 2014-12-26 | 60 | -305/+355 |
| | | | |||||
* | | | Stubbed IsSdmcWriteable to always return writeable. | archshift | 2014-12-24 | 1 | -1/+18 |
| |/ |/| | |||||
* | | Merge pull request #322 from chinhodado/master | bunnei | 2014-12-22 | 1 | -2/+2 |
|\ \ | |/ |/| | More warning cleanups | ||||
| * | More warning cleanups | Chin | 2014-12-21 | 1 | -2/+2 |
| | | |||||
* | | CFG: Fixed some warnings and errors in Clang | Subv | 2014-12-22 | 2 | -4/+4 |
| | | |||||
* | | CFG: More style changes | Subv | 2014-12-22 | 1 | -5/+5 |
| | | |||||
* | | CFGU: Indentation | Subv | 2014-12-21 | 1 | -4/+3 |
| | | |||||
* | | CFG: Some indentation | Subv | 2014-12-21 | 1 | -11/+13 |
| | | |||||
* | | CFG: Changed the CreateConfigInfoBlk search loop | Subv | 2014-12-21 | 1 | -7/+4 |
| | | |||||
* | | CFG: Corrected the licenses in cfg_i.cpp and cfg_u.cpp | Subv | 2014-12-21 | 2 | -2/+2 |
| | | |||||
* | | CFG: Create a new subfolder cfg inside service to handle cfg | Subv | 2014-12-21 | 9 | -485/+610 |
| | | | | | | | | Moved most of the shared CFG code there, implemented a few CFG:I functions | ||||
* | | CFGU: Some changes | Subv | 2014-12-21 | 1 | -12/+33 |
| | | |||||
* | | CFGU: Addressed some issues. | Subv | 2014-12-21 | 1 | -43/+55 |
| | | |||||
* | | CFGU: Addressed some comments. | Subv | 2014-12-21 | 1 | -11/+13 |
| | | |||||
* | | Style: Addressed some comments | Subv | 2014-12-21 | 1 | -4/+5 |
| | | |||||
* | | CFG_U: Use Common::make_unique instead of the std version | Subv | 2014-12-21 | 1 | -1/+2 |
| | | |||||
* | | CFG:U: Implemented some more blocks | Subv | 2014-12-21 | 1 | -4/+30 |
| | | |||||
* | | CFG: Implemented block 0x00070001 in the config savefile | Subv | 2014-12-21 | 1 | -0/+5 |
| | | |||||
* | | CFGU: Use an absolute offset in the config savefile blocks | Subv | 2014-12-21 | 1 | -1/+3 |
| | | |||||
* | | CFG: Load the Config savedata file if it already exists. | Subv | 2014-12-21 | 1 | -3/+4 |
| | | |||||
* | | CFGU: Added block 0x000A0002 to the default savegame file | Subv | 2014-12-21 | 1 | -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. | Subv | 2014-12-21 | 1 | -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. | Subv | 2014-12-21 | 1 | -6/+11 |
| | | | | | | | | Seems to allow some games to boot further, thanks @Normmatt for sharing this information | ||||
* | | CFG: Implemented the GetConfigInfoBlk2 function. | Subv | 2014-12-21 | 2 | -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/license | bunnei | 2014-12-21 | 82 | -84/+84 |
|\ \ | | | | | | | License change | ||||
| * | | License change | purpasmart96 | 2014-12-21 | 82 | -84/+84 |
| | | | |||||
* | | | Merge pull request #271 from archshift/createf | bunnei | 2014-12-21 | 3 | -1/+47 |
|\ \ \ | | | | | | | | | Added CreateFile to the FS_USER service | ||||
| * | | | Added CreateFile to the FS_USER service | archshift | 2014-12-21 | 3 | -1/+47 |
| | | | | | | | | | | | | | | | | Tested with hwtests. | ||||
* | | | | Thread: Wait current thread on svc_SleepThread | bunnei | 2014-12-21 | 3 | -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-handle | bunnei | 2014-12-20 | 3 | -2/+16 |
|\ \ \ | | | | | | | | | Kernel: Implement support for current thread pseudo-handle | ||||
| * | | | Kernel: Implement support for current thread pseudo-handle | Yuri Kunde Schlesner | 2014-12-20 | 3 | -2/+16 |
| | | | | | | | | | | | | | | | | This boots a few (mostly Nintendo 1st party) games further. | ||||
* | | | | Merge pull request #315 from chinhodado/master | bunnei | 2014-12-20 | 2 | -5/+5 |
|\ \ \ \ | |_|/ / |/| | | | Clean up some warnings | ||||
| * | | | Clean up some warnings | Chin | 2014-12-20 | 2 | -5/+5 |
| | | | | |||||
* | | | | Common: Add a clone of std::make_unique | Yuri Kunde Schlesner | 2014-12-20 | 1 | -6/+7 |
| | | | | |||||
* | | | | Merge pull request #306 from Subv/even_more_savedata | bunnei | 2014-12-20 | 1 | -2/+31 |
|\ \ \ \ | |/ / / |/| | | | SaveData: Added some documentation to FormatSaveData | ||||
| * | | | FS_U: Added the command to the docs of SaveData functions | Subv | 2014-12-20 | 1 | -0/+2 |
| | | | | |||||
| * | | | SaveData: Added some documentation to FormatSaveData | Subv | 2014-12-18 | 1 | -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/flushshutup | bunnei | 2014-12-19 | 1 | -1/+25 |
|\ \ \ \ | |_|_|/ |/| | | | GSP_GPU: Shut up FlushDataCache | ||||
| * | | | GSP_GPU: Shut up FlushDataCache | purpasmart96 | 2014-12-19 | 1 | -1/+25 |
| | | | | |||||
* | | | | Merge pull request #308 from Subv/more_savedata | bunnei | 2014-12-19 | 1 | -1/+1 |
|\ \ \ \ | | | | | | | | | | | SystemSaveData: Fixed a typo that was segfaulting | ||||
| * | | | | SystemSaveData: Fixed a typo that was segfaulting | Subv | 2014-12-19 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | Merge pull request #301 from Subv/more_savedata | bunnei | 2014-12-18 | 1 | -0/+9 |
|\| | | | | |/ / / |/| | | | SaveData: Implemented the SystemSaveData archive. | ||||
| * | | | SaveData: Implemented the SystemSaveData archive. | Subv | 2014-12-18 | 1 | -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_perm | bunnei | 2014-12-18 | 2 | -5/+13 |
|\ \ \ | |/ / |/| | | Kernel: Add missing permissions | ||||
| * | | Kernel:Add missing permissions in shared memory & svc | purpasmart96 | 2014-11-19 | 2 | -5/+13 |
| | | | |||||
* | | | Filesystem/Archives: Implemented the SaveData archive | Subv | 2014-12-18 | 6 | -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 MSVC | Yuri Kunde Schlesner | 2014-12-16 | 2 | -6/+8 |
| | | |||||
* | | Merge pull request #283 from yuriks/archive-refactor | bunnei | 2014-12-16 | 7 | -241/+245 |
|\ \ | | | | | | | Archive refactor | ||||
| * | | Work around libstdc++'s lack of support for std::hash on enums | Yuri Kunde Schlesner | 2014-12-16 | 1 | -0/+15 |
| | | | |||||
| * | | FS.Archive: Clean up treatment of archives and their handles | Yuri Kunde Schlesner | 2014-12-16 | 3 | -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 FileBackend | Yuri Kunde Schlesner | 2014-12-16 | 1 | -1/+1 |
| | | | |||||
| * | | Service.FS: Rename FileSys::Directory to DirectoryBackend | Yuri Kunde Schlesner | 2014-12-16 | 1 | -2/+2 |
| | | | |||||
| * | | Service.FS: Rename FileSys::Archive to ArchiveBackend | Yuri Kunde Schlesner | 2014-12-16 | 2 | -5/+5 |
| | | | |||||
| * | | Service.FS: Do archive registration using IdCode instead of name | Yuri Kunde Schlesner | 2014-12-16 | 3 | -16/+27 |
| | | | |||||
| * | | HLE: Rename namespaces to match move & fix initialization order | Yuri Kunde Schlesner | 2014-12-16 | 7 | -36/+36 |
| | | | |||||
| * | | HLE: Move kernel/archive.* to service/fs/ | Yuri Kunde Schlesner | 2014-12-16 | 6 | -6/+5 |
| | | | |||||
* | | | Merge pull request #282 from archshift/services | bunnei | 2014-12-16 | 9 | -0/+221 |
|\ \ \ | |/ / |/| | | Added stubs for ldr:ro, cecd:u, nim:aoc, and am:app services | ||||
| * | | Added stub for nim:aoc service... | archshift | 2014-12-16 | 3 | -0/+60 |
| | | | |||||
| * | | Added stub for cecd:u service... | archshift | 2014-12-16 | 3 | -0/+52 |
| | | | | | | | | | | | | I couldn't find any information about this service... | ||||
| * | | Added stub for ldr:ro service... | archshift | 2014-12-16 | 3 | -0/+57 |
| | | | |||||
| * | | Added am:app service stub. | archshift | 2014-12-16 | 3 | -0/+52 |
| | | | | | | | | | | | | Apparently nothing at all is known about this service... | ||||
* | | | Remove SyncRequest from K::Object and create a new K::Session type | Yuri Kunde Schlesner | 2014-12-15 | 14 | -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 build | Subv | 2014-12-13 | 1 | -2/+2 |
| | | |||||
* | | Kernel/Semaphore: Small style change | Subv | 2014-12-13 | 1 | -1/+1 |
| | | |||||
* | | Kernel/Semaphores: Invert the available count checking. | Subv | 2014-12-13 | 1 | -11/+9 |
| | | | | | | | | Same semantics, idea by @yuriks | ||||
* | | Kernel/Semaphores: Addressed some issues. | Subv | 2014-12-13 | 2 | -32/+18 |
| | | |||||
* | | Semaphore: Removed an unneeded function | Subv | 2014-12-13 | 1 | -5/+0 |
| | | |||||
* | | Semaphores: Addressed some style issues | Subv | 2014-12-13 | 1 | -6/+5 |
| | | |||||
* | | Semaphore: Implemented the initial_count parameter. | Subv | 2014-12-13 | 2 | -5/+7 |
| | | |||||
* | | SVC: Implemented ReleaseSemaphore. | Subv | 2014-12-13 | 4 | -19/+81 |
| | | | | | | | | This behavior was tested on hardware, however i'm still not sure what use the "initial_count" parameter has | ||||
* | | SVC: Implemented svcCreateSemaphore | Subv | 2014-12-13 | 4 | -1/+115 |
| | | | | | | | | | | ToDo: Implement svcReleaseSemaphore * Some testing against hardware needed | ||||
* | | kernel: Remove unused log arguments | Lioncash | 2014-12-13 | 1 | -3/+3 |
| | | |||||
* | | Convert old logging calls to new logging macros | Yuri Kunde Schlesner | 2014-12-13 | 20 | -191/+138 |
| | | |||||
* | | New logging system | Yuri Kunde Schlesner | 2014-12-13 | 1 | -0/+1 |
| | | |||||
* | | Merge pull request #267 from bunnei/apt-shared-font | bunnei | 2014-12-13 | 2 | -35/+101 |
|\ \ | | | | | | | APT shared font loading | ||||
| * | | APT_U: Added GetSharedFont service function. | bunnei | 2014-12-13 | 1 | -34/+100 |
| | | | |||||
| * | | MemMap: Renamed "GSP" heap to "linear", as this is not specific to GSP. | bunnei | 2014-12-12 | 1 | -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. | bunnei | 2014-12-12 | 1 | -1/+45 |
|/ / | |||||
* | | Merge pull request #256 from Subv/mutex | bunnei | 2014-12-11 | 3 | -37/+67 |
|\ \ | | | | | | | Kernel/Mutex: Properly lock the mutex when a thread enters it | ||||
| * | | Mutex: Remove some forward declarations | Subv | 2014-12-07 | 1 | -16/+15 |
| | | | | | | | | | | | | Moved Mutex::WaitSynchronization to the end of the file. | ||||
| * | | Mutex: Release all held mutexes when a thread exits. | Subv | 2014-12-07 | 3 | -22/+56 |
| | | | |||||
| * | | Mutex: Properly lock the mutex when a thread enters it | Subv | 2014-12-06 | 1 | -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 Peyrot | 2014-12-10 | 1 | -44/+48 |
| | | | |||||
* | | | GSP: Trigger GPU interrupts at more accurate locations. | bunnei | 2014-12-10 | 1 | -7/+6 |
| | | | |||||
* | | | GSP: Updated TriggerCmdReqQueue to return success code. | bunnei | 2014-12-10 | 1 | -0/+3 |
| | | | |||||
* | | | GSP: Updated RegisterInterruptRelayQueue to return expected magic number. | bunnei | 2014-12-10 | 1 | -1/+4 |
| | | | |||||
* | | | GPU: Fixed bug in command list size decoding. | bunnei | 2014-12-10 | 1 | -1/+1 |
| | | | |||||
* | | | Merge pull request #217 from archshift/cmd_buff | bunnei | 2014-12-09 | 1 | -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 function | archshift | 2014-11-25 | 1 | -12/+12 |
| | | | | |||||
* | | | | Thread: Fixed to wait on address when in arbitration. | bunnei | 2014-12-09 | 3 | -11/+31 |
| | | | | |||||
* | | | | Make OpenDirectory fail if the directory doesn't exist | archshift | 2014-12-07 | 1 | -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_2 | bunnei | 2014-12-05 | 3 | -4/+31 |
|\ \ \ | | | | | | | | | SVC: Implemented GetThreadId. | ||||
| * | | | Threads: Remove a redundant function. | Subv | 2014-12-04 | 1 | -9/+1 |
| | | | | | | | | | | | | | | | | Use the next_thread_id variable directly. | ||||
| * | | | Threads: Implemented a sequential thread id | Subv | 2014-12-04 | 2 | -4/+19 |
| | | | | |||||
| * | | | SVC: Implemented GetThreadId. | Subv | 2014-12-04 | 3 | -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/renamexyz | bunnei | 2014-12-05 | 3 | -38/+163 |
|\ \ \ \ | | | | | | | | | | | Implemented RenameFile and RenameDirectory in FS:USER | ||||
| * | | | | Updated archive.cpp functions for proper error handling | archshift | 2014-12-04 | 3 | -70/+41 |
| | | | | | |||||
| * | | | | Implemented RenameDirectory in FS:USER | archshift | 2014-11-25 | 3 | -1/+78 |
| | | | | | |||||
| * | | | | Implemented RenameFile in FS:USER | archshift | 2014-11-25 | 3 | -1/+78 |
| | |/ / | |/| | | |||||
* | | | | Merge pull request #248 from lioncash/kernel | bunnei | 2014-12-05 | 2 | -10/+7 |
|\ \ \ \ | | | | | | | | | | | Misc minor kernel-related changes. | ||||
| * | | | | kernel: Shorten GetCount | Lioncash | 2014-12-04 | 1 | -6/+3 |
| | | | | | |||||
| * | | | | kernel: Make some functions const | Lioncash | 2014-12-04 | 2 | -4/+4 |
| | | | | | |||||
* | | | | | Merge pull request #247 from lioncash/const | bunnei | 2014-12-04 | 2 | -4/+4 |
|\ \ \ \ \ | | | | | | | | | | | | | hid_user: Pass by reference with PadButtonPress/PadButtonRelease | ||||
| * | | | | | hid_user: Pass by reference with PadButtonPress/PadButtonRelease | Lioncash | 2014-12-04 | 2 | -4/+4 |
| | |_|/ / | |/| | | | |||||
* | | | | | Merge pull request #238 from archshift/dsp | bunnei | 2014-12-04 | 1 | -25/+44 |
|\ \ \ \ \ | | | | | | | | | | | | | Add stub for ConvertProcessFromDspDram | ||||
| * | | | | | Add stub for ConvertProcessFromDspDram | archshift | 2014-12-04 | 1 | -25/+44 |
| | |/ / / | |/| | | | | | | | | | | | | | Should theoretically push retail stuff further along | ||||
* | | | | | PTM_U: Added a stub for GetBatteryLevel & GetBatteryChargeState & GetAdapterState | purpasmart96 | 2014-12-04 | 1 | -3/+72 |
| |/ / / |/| | | | |||||
* | | | | Merge pull request #231 from purpasmart96/serv_ac_wifi_status | bunnei | 2014-12-03 | 1 | -1/+19 |
|\ \ \ \ | | | | | | | | | | | AC_U: Added a stub for GetWifiStatus | ||||
| * | | | | AC_U: Added a stub for GetWifiStatus | purpasmart96 | 2014-12-03 | 1 | -1/+19 |
| | |/ / | |/| | | |||||
* | | | | Merge pull request #219 from Subv/ptm | bunnei | 2014-12-03 | 1 | -1/+18 |
|\ \ \ \ | |_|/ / |/| | | | PTM_U: Implemented the GetShellState function. | ||||
| * | | | PTM_U: Implemented the GetShellState function. | Subv | 2014-12-01 | 1 | -1/+18 |
| | | | | |||||
* | | | | Merge pull request #224 from bunnei/dsp-service-improvements | bunnei | 2014-12-01 | 2 | -26/+107 |
|\ \ \ \ | | | | | | | | | | | Dsp service improvements | ||||
| * | | | | DSP: Added stubs for several commonly used DSP service functions. | bunnei | 2014-12-01 | 1 | -25/+106 |
| | | | | | |||||
| * | | | | DSP: Fixed typo in port name. | bunnei | 2014-12-01 | 1 | -1/+1 |
| | |/ / | |/| | | |||||
* | | | | Merge pull request #214 from Subv/master | bunnei | 2014-12-01 | 1 | -2/+86 |
|\ \ \ \ | | | | | | | | | | | CFG:U: Implemented the GetCountryCodeID and GetCountryCodeString | ||||
| * | | | | CFG:U: Implemented the GetCountryCodeID and GetCountryCodeString. | Subv | 2014-11-30 | 1 | -2/+86 |
| | | | | | |||||
* | | | | | Merge pull request #225 from bunnei/fix-release-mutex | bunnei | 2014-11-30 | 1 | -8/+7 |
|\ \ \ \ \ | | | | | | | | | | | | | Mutex: Changed behavior to always release mutex for all threads. | ||||
| * | | | | | Mutex: Changed behavior to always release mutex for all threads. | bunnei | 2014-11-26 | 1 | -8/+7 |
| | |/ / / | |/| | | | |||||
* | | | | | Merge pull request #226 from bunnei/svc-and-thread-fixes | bunnei | 2014-11-30 | 2 | -1/+6 |
|\ \ \ \ \ | |_|/ / / |/| | | | | Svc and thread fixes | ||||
| * | | | | Thread: Check that thread is actually in "wait state" when verifying wait. | bunnei | 2014-11-26 | 1 | -1/+1 |
| | | | | | |||||
| * | | | | SVC: Add debug log to ArbitrateAddress. | bunnei | 2014-11-26 | 1 | -0/+2 |
| | | | | | |||||
| * | | | | SVC: SleepThread should yield to the next ready thread. | bunnei | 2014-11-26 | 1 | -0/+3 |
| |/ / / | |||||
* / / / | Fixed formatting and switch statement warnings | vaguilar | 2014-11-27 | 1 | -3/+3 |
|/ / / | |||||
* | | | Use pointers instead of passing handles around in some functions. | Yuri Kunde Schlesner | 2014-11-24 | 1 | -19/+15 |
| | | | |||||
* | | | Remove duplicated docs/update them for changed parameters. | Yuri Kunde Schlesner | 2014-11-24 | 10 | -88/+0 |
| | | | |||||
* | | | HLE: Revamp error handling throrough the HLE code | Yuri Kunde Schlesner | 2014-11-24 | 21 | -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/deletexyz | bunnei | 2014-11-24 | 3 | -26/+114 |
|\ \ \ | |/ / |/| | | Added DeleteFile and DeleteDirectory functions to FS:USER and the archives. | ||||
| * | | Added DeleteFile and DeleteDirectory functions to FS:USER and the archives. | archshift | 2014-11-23 | 3 | -26/+114 |
| | | | |||||
* | | | Add more services and some fixes, along with more "override" | purpasmart96 | 2014-11-21 | 25 | -17/+452 |
| | | | | | | | | | | | | in the service's headers | ||||
* | | | Merge pull request #211 from linkmauve/master | bunnei | 2014-11-19 | 30 | -86/+86 |
|\ \ \ | | | | | | | | | Remove trailing spaces from the entire project | ||||
| * | | | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generated | Emmanuel Gil Peyrot | 2014-11-19 | 30 | -86/+86 |
| | | | | |||||
* | | | | Merge pull request #208 from lioncash/statics | bunnei | 2014-11-19 | 2 | -23/+23 |
|\ \ \ \ | |/ / / |/| | | | Add static to some variables | ||||
| * | | | Add static to some variables | Lioncash | 2014-11-19 | 2 | -23/+23 |
| | | | | |||||
* | | | | Remove extraneous semicolons | Lioncash | 2014-11-18 | 1 | -1/+1 |
|/ / / | |||||
* / / | core: Mark some hle functions as static | Lioncash | 2014-11-18 | 5 | -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. | bunnei | 2014-11-18 | 1 | -3/+3 |
| | | |||||
* | | Archive: Fixed close archive before freeing. | bunnei | 2014-11-18 | 1 | -1/+1 |
| | | |||||
* | | FS_User: Support FileSye::Path in a more generic way. | bunnei | 2014-11-18 | 2 | -42/+76 |
| | | | | | | | | added a todo to kernel archive | ||||
* | | FileSys: Updated backend code to use FileSys::Path instead of string for paths. | bunnei | 2014-11-18 | 3 | -14/+14 |
| | | |||||
* | | Add missing boss:U service, needed according to Nintendo Zone logs. | archshift | 2014-11-17 | 3 | -0/+57 |
| | | |||||
* | | Fix two format strings. | Lioncash | 2014-11-14 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #183 from archshift/lowpath | bunnei | 2014-11-13 | 1 | -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 functions | archshift | 2014-11-13 | 2 | -138/+40 |
| | | | |||||
| * | | Add support for UTF-16 strings for LowPaths in FS:USER | archshift | 2014-11-10 | 2 | -86/+182 |
| |/ | |||||
* | | Merge pull request #188 from bunnei/apt-fixes | bunnei | 2014-11-12 | 1 | -19/+90 |
|\ \ | | | | | | | APT_U: Various improvements and bug fixes. | ||||
| * | | APT_U: Added stub for function AppletUtility. | bunnei | 2014-11-12 | 1 | -1/+29 |
| | | | |||||
| * | | APT_U: Set a valid parameter buffer size in GlanceParameter. | bunnei | 2014-11-12 | 1 | -17/+39 |
| | | | | | | | | | | | | - Also Clarified GlanceParameter/ReceiveParameter documentation. | ||||
| * | | APT_U: Release service lock on initialization. | bunnei | 2014-11-12 | 1 | -0/+4 |
| | | | |||||
| * | | APT_U: Fixes for GetLockHandle to boot system titles. | bunnei | 2014-11-12 | 1 | -1/+18 |
| |/ | | | | | | | - Also added comment to GetLockHandle function. | ||||
* / | Add FRD:U service and functions | archshift | 2014-11-11 | 3 | -0/+64 |
|/ | |||||
* | Merge pull request #163 from archshift/create-directory | bunnei | 2014-11-02 | 3 | -4/+63 |
|\ | | | | | Added CreateDirectory function to service/fs.cpp, and in Archive. | ||||
| * | Added CreateDirectory function to service/fs.cpp, and in Archive. | archshift | 2014-11-02 | 3 | -4/+63 |
| | | |||||
* | | Added ReceiveNotification, PublishToSubscriber unimplemented functions to SRV | archshift | 2014-11-02 | 1 | -0/+2 |
|/ | |||||
* | Added stub err:f service. | archshift | 2014-11-02 | 3 | -0/+56 |
| | |||||
* | Added a bunch of services | purpasmart96 | 2014-11-01 | 17 | -0/+581 |
| | |||||
* | Merge pull request #162 from SeannyM/warning-fixes | bunnei | 2014-10-30 | 2 | -6/+6 |
|\ | | | | | Fix some warnings | ||||
| * | Fix some warnings | Sean | 2014-10-30 | 2 | -6/+6 |
| | | |||||
* | | FS:USER - Implemented IsSdmcDetected | archshift | 2014-10-30 | 1 | -1/+17 |
| | | |||||
* | | Renamed souce files of services to match port names | Gareth Poole | 2014-10-29 | 11 | -10/+10 |
|/ | |||||
* | Merge pull request #141 from archshift/crash-hunt | bunnei | 2014-10-28 | 1 | -0/+4 |
|\ | | | | | hid.cpp: Fixed crash when updating pad data while null | ||||
| * | hid.cpp: Fixed crash when updating pad data while null | archshift | 2014-10-14 | 1 | -0/+4 |
| | | | | | | | | Fixes #137 | ||||
* | | Add `override` keyword through the code. | Yuri Kunde Schlesner | 2014-10-26 | 13 | -46/+46 |
| | | | | | | | | This was automated using `clang-modernize`. | ||||
* | | ARM: Integrate SkyEye faster "dyncom" interpreter. | bunnei | 2014-10-25 | 1 | -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 instead | Emmanuel Gil Peyrot | 2014-10-25 | 1 | -8/+7 |
|/ | |||||
* | Merge pull request #128 from purpasmart96/master | bunnei | 2014-10-08 | 1 | -1/+31 |
|\ | | | | | APT:U Added a stub fuction for "GlanceParameter" | ||||
| * | APT: Added a stub for the "GlanceParameter" function. | purpasmart96 | 2014-10-08 | 1 | -1/+31 |
| | | |||||
* | | FileSys: split the constructor into an Open method, in order to notify the opener something went wrong. | Emmanuel Gil Peyrot | 2014-10-06 | 1 | -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 Peyrot | 2014-10-06 | 1 | -0/+8 |
|/ | |||||
* | Added some more names to the function table | purpasmart96 | 2014-10-05 | 1 | -0/+2 |
| | | | Added "SetApplicationCpuTimeLimit" and "GetApplicationCpuTimeLimit" to apt.cpp | ||||
* | added "StoreDataCache" to the function table | purpasmart96 | 2014-09-30 | 1 | -0/+1 |
| | | | seems simple enough | ||||
* | Use the citra user path for the sdmc directory | archshift | 2014-09-21 | 1 | -2/+1 |
| | |||||
* | Kernel: Implement the Close command for Archive, File and Directory. | Emmanuel Gil Peyrot | 2014-09-17 | 2 | -0/+43 |
| | |||||
* | FS: Implement OpenArchive, OpenDirectory, OpenFile and OpenFileDirectly calls. | Emmanuel Gil Peyrot | 2014-09-17 | 1 | -20/+177 |
| | |||||
* | Kernel: Add a Directory object and a getter for it from an Archive object. | Emmanuel Gil Peyrot | 2014-09-17 | 3 | -0/+91 |
| | |||||
* | Kernel: Add a File object and a getter for it from an Archive object. | Emmanuel Gil Peyrot | 2014-09-17 | 2 | -0/+118 |
| | |||||
* | Core: Get rid of unnecessary switch statement in Kernel | Lioncash | 2014-09-15 | 1 | -41/+2 |
| | |||||
* | Added support for multiple input device types for KeyMap and connected Qt. | Kevin Hartman | 2014-09-12 | 2 | -113/+127 |
| | |||||
* | Initial HID PAD work, with GLFW only. | Kevin Hartman | 2014-09-12 | 2 | -24/+197 |
| | |||||
* | Created structure for PAD. | Kevin Hartman | 2014-09-12 | 2 | -0/+28 |
| | |||||
* | Merge pull request #99 from archshift/ext-check | bunnei | 2014-09-11 | 1 | -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.cpp | archshift | 2014-09-09 | 1 | -1/+1 |
| | | |||||
* | | core: Prune redundant includes | archshift | 2014-09-09 | 12 | -23/+0 |
|/ | |||||
* | core: Pass string by reference in FetchFromPortName and DeleteService | Lioncash | 2014-09-06 | 2 | -4/+4 |
| | |||||
* | Threading: Fix thread starting to execute first instruction correctly. | bunnei | 2014-08-28 | 1 | -0/+5 |
| | |||||
* | srv::Initialize: Return "success" status code. | bunnei | 2014-08-28 | 1 | -0/+4 |
| | |||||
* | Pica/citra-qt: Replace command list view and command list debugging code with something more sophisticated. | Tony Wasserka | 2014-08-25 | 1 | -5/+0 |
| | |||||
* | GSP: Update framebuffer information when necessary. | Tony Wasserka | 2014-08-25 | 2 | -2/+41 |
| | |||||
* | GSP: Implement SetBufferSwap. | Tony Wasserka | 2014-08-25 | 2 | -1/+47 |
| | |||||
* | GSP: Add a helper function for convenience. | Tony Wasserka | 2014-08-25 | 1 | -17/+22 |
| | |||||
* | Added FS functions to Archive and Archive_RomFS | archshift | 2014-08-23 | 1 | -3/+31 |
| | |||||
* | Core: Use std::array for managing kernel object space | Lioncash | 2014-08-19 | 2 | -5/+5 |
| | | | | These avoid relying on memset for clearing the arrays. | ||||
* | Merge pull request #55 from lioncash/string | bunnei | 2014-08-19 | 16 | -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*. | Lioncash | 2014-08-18 | 16 | -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. | bunnei | 2014-08-19 | 2 | -19/+48 |
|/ | | | | Changed HLE function return methods to be static inline functions. | ||||
* | Core: Fix a formatting error in svc.cpp | Lioncash | 2014-08-17 | 1 | -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-improvements | bunnei | 2014-08-13 | 2 | -6/+45 |
|\ | | | | | Hid minor improvements | ||||
| * | HID: Added new function entries from 3dbrew to FunctionTable. | bunnei | 2014-08-13 | 1 | -0/+5 |
| | | | | | | | | HID: Fix typo with DisableGyroscopeLow command. | ||||
| * | HID: Implemented HID_User::GetIPCHandles service function. | bunnei | 2014-08-08 | 1 | -5/+39 |
| | | |||||
| * | SVC: Fixed typo with MapMemoryBlock DEBUG_LOG call. | bunnei | 2014-08-08 | 1 | -1/+1 |
| | | |||||
* | | Pica/GPU: Change hardware registers to use physical addresses rather than virtual ones. | Tony Wasserka | 2014-08-12 | 1 | -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 Wasserka | 2014-08-12 | 1 | -4/+13 |
| | | |||||
* | | Remove the fancy RegisterSet class introduced in 4c2bff61e. | Tony Wasserka | 2014-08-12 | 1 | -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. | bunnei | 2014-08-07 | 2 | -2/+10 |
| | |||||
* | GSP: Cleaned up command buffer decoding. | bunnei | 2014-08-07 | 2 | -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. | bunnei | 2014-08-06 | 1 | -0/+3 |
| | |||||
* | GSP: Removed dumb GX prefixes to functions/structs in GSP namespace. | bunnei | 2014-08-06 | 2 | -77/+78 |
| | | | | - Various other cleanups. | ||||
* | GSP: Removed unnecessary GX_FinishCommand function. | bunnei | 2014-08-06 | 1 | -13/+5 |
| | |||||
* | GSP: Implements preliminary command synchronization via GPU interrupts. | bunnei | 2014-08-06 | 2 | -18/+109 |
| | | | | Core: Added a comment to explain the logic for the RunLoop iterations. | ||||
* | AddressArbiter: Removed unnecessary HLE::Reschedule. | bunnei | 2014-08-06 | 1 | -1/+0 |
| | |||||
* | AddressArbiter: Fixed bug with break statements missing from case statements. | bunnei | 2014-08-06 | 1 | -0/+2 |
| | |||||
* | SRV: Updated GetProcSemaphore to create an event instead of a mutex. | bunnei | 2014-08-06 | 1 | -8/+10 |
| | |||||
* | SVC: Removed ArbitrateAddress log message that spams to much. | bunnei | 2014-08-06 | 1 | -2/+0 |
| | |||||
* | Kernel: Updated Event and Mutex to specify handle that they are blocking for. | bunnei | 2014-08-06 | 2 | -2/+2 |
| | |||||
* | FS: Fix port name (old port name was based on an unaligned memory read). | bunnei | 2014-08-06 | 1 | -1/+1 |
| | |||||
* | Fix a few warnings. | Tony Wasserka | 2014-07-23 | 1 | -3/+3 |
| | | | | Templates shouldn't be marked as inline if they aren't defined in the header. | ||||
* | GSP: Add a few comments. | Tony Wasserka | 2014-07-23 | 2 | -1/+15 |
| | |||||
* | GSP: Clean up GX command processing a lot and treat command id as a u8 rather than a u32. | Tony Wasserka | 2014-07-23 | 2 | -37/+79 |
| | | | | Anonymous structs are not standard C++, hence don't use them. | ||||
* | GPU: Make use of RegisterSet. | Tony Wasserka | 2014-07-23 | 1 | -21/+28 |
| | |||||
* | GPU: Emulate memory fills. | Tony Wasserka | 2014-07-23 | 2 | -1/+9 |
| | |||||
* | GSP: HLE GXCommandId::SET_DISPLAY_TRANSFER and GXCommandId::SET_TEXTURE_COPY. | Tony Wasserka | 2014-07-23 | 1 | -2/+9 |
| | |||||
* | GSP: Implement ReadHWRegs and WriteHWRegs properly. | Tony Wasserka | 2014-07-23 | 1 | -27/+46 |
| | |||||
* | Kernel: Added preliminary support for address arbiters. | bunnei | 2014-07-09 | 4 | -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. | bunnei | 2014-07-09 | 2 | -0/+44 |
| | | | | | | Thread: Cleaned up arbitrate address functions. Thread: Cleaned up ArbitrateAllThreads function. | ||||
* | function_wrappers: Fixed incorrect wrapper, added another. | bunnei | 2014-07-08 | 1 | -2/+9 |
| | |||||
* | SharedMemory: Updated MapSharedMemory to use an enum for permissions. | bunnei | 2014-07-05 | 3 | -16/+36 |
| | | | | - Also added some safety checks to MapSharedMemory. | ||||
* | GSP: Fixed to use real shared memory object, various cleanups. | bunnei | 2014-07-05 | 2 | -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. | bunnei | 2014-07-05 | 2 | -0/+132 |
| | | | | SharedMemory: Added optional name field for tracking known objects. | ||||
* | Archive: Added Init/Shutdown methods to reset kernel archive state. | bunnei | 2014-07-05 | 3 | -0/+19 |
| | |||||
* | FileSys: Added preliminary support for applications reading the RomFS archive. | bunnei | 2014-07-05 | 3 | -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. | bunnei | 2014-07-04 | 1 | -71/+93 |
| | | | | | | APT: More cleanups. APT: Changed SignalType to be type u32. | ||||
* | FS: Added stubbed code to intercept and decode file system service functions. | bunnei | 2014-06-27 | 3 | -0/+154 |
| | | | | FS: Added to CMakeLists.txt | ||||
* | Kernel: Added stubbed code to support creation of kernel Archive objects. | bunnei | 2014-06-27 | 3 | -0/+85 |
| | |||||
* | Merge branch 'threading' of https://github.com/bunnei/citra | bunnei | 2014-06-14 | 24 | -1124/+1133 |
|\ | | | | | | | | | | | Conflicts: src/core/hle/function_wrappers.h src/core/hle/service/gsp.cpp | ||||
| * | Kernel: Removed unnecessary "#pragma once". | bunnei | 2014-06-13 | 1 | -2/+0 |
| | | |||||
| * | Kernel: Added freeing of kernel objects on emulator shutdown. | bunnei | 2014-06-13 | 2 | -0/+10 |
| | | |||||
| * | Event: Updated several log messages to be assertions. | bunnei | 2014-06-13 | 1 | -16/+8 |
| | | |||||
| * | HLE: Moved "PARAM" and "RETURN" macros to function_wrappers.h (this is only module where they are needed). | bunnei | 2014-06-13 | 2 | -5/+6 |
| | | |||||
| * | SVC: Renamed all function wrapper templates to Wrap, moved to HLE namespace. | bunnei | 2014-06-13 | 2 | -157/+145 |
| | | |||||
| * | Thread: Renamed occurrences of "t" to "thread" to improve readability. | bunnei | 2014-06-13 | 1 | -48/+45 |
| | | |||||
| * | Thread: Cleaned up VerifyWait, fixed issue where nullptr msg could unnecessarily be logged. | bunnei | 2014-06-13 | 1 | -9/+7 |
| | | |||||
| * | HLE: Removed usnused EatCycles function. | bunnei | 2014-06-13 | 3 | -15/+0 |
| | | |||||
| * | SVC: Cleaned up function wrappers to pass in correct argument types. | bunnei | 2014-06-13 | 2 | -870/+201 |
| | | |||||
| * | Thread: Moved position of * in arguments. | bunnei | 2014-06-13 | 1 | -2/+2 |
| | | |||||
| * | Thread: Updated VerifyWait to be more readable (but functionally the same). | bunnei | 2014-06-13 | 1 | -4/+3 |
| | | |||||
| * | SVC: Moved declaration of "wait" variable in SendSyncRequest for improved readability. | bunnei | 2014-06-13 | 1 | -1/+1 |
| | | |||||
| * | HLE: Updated all uses of NULL to nullptr (to be C++11 compliant) | bunnei | 2014-06-13 | 12 | -235/+235 |
| | | |||||
| * | Kernel: Updated various kernel function "name" arguments to be const references. | bunnei | 2014-06-13 | 4 | -6/+6 |
| | | |||||
| * | HLE: Updated various handle debug assertions to be more clear. | bunnei | 2014-06-13 | 4 | -10/+10 |
| | | |||||
| * | Mutex: Moved ReleaseMutex iterator declaration to be inside while loop. | bunnei | 2014-06-13 | 1 | -2/+1 |
| | | |||||
| * | Kernel: Updated several member functions to be const | bunnei | 2014-06-13 | 5 | -13/+13 |
| | | |||||
| * | Thread: Fixed bug with ResetThread where cpu_registers[15] was being incorrectly set | bunnei | 2014-06-13 | 1 | -1/+1 |
| | | |||||
| * | Kernel: Made SyncRequest not pure virtual, with a default implementation of error (as this is not required for all kernel objects) | bunnei | 2014-06-13 | 3 | -23/+4 |
| | | |||||
| * | Kernel: Added real support for thread and event blocking | bunnei | 2014-06-13 | 6 | -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) | bunnei | 2014-06-05 | 2 | -0/+5 |
| | | |||||
| * | kernel: changed current default thread priority back to 0x30 - I think this is more correct | bunnei | 2014-06-05 | 1 | -1/+1 |
| | | |||||
| * | arm: fixed bug in how thread context switch occurs with SkyEye | bunnei | 2014-06-05 | 1 | -0/+4 |
| | | |||||
| * | service: added a error log messages for unimplemented WaitSynchronization | bunnei | 2014-06-05 | 1 | -0/+1 |
| | | |||||
| * | svc: added optional name field to Event and Mutex (used for debugging) | bunnei | 2014-06-03 | 6 | -12/+25 |
| | | |||||
| * | kernel: moved position of * for GetTypeName and GetName | bunnei | 2014-06-03 | 1 | -2/+2 |
| | | |||||
| * | coprocessor: reenabled debug log | bunnei | 2014-06-03 | 1 | -1/+1 |
| | | |||||
| * | svc: updated WaitSynchronizationN to properly use first pointer argument | bunnei | 2014-06-02 | 2 | -4/+6 |
| | | |||||
| * | svc: changed DuplicateHandle log message from "error" to "debug" | bunnei | 2014-06-02 | 1 | -1/+1 |
| | | |||||
| * | svc: added GetThreadPriority and SetThreadPriority, added (incomplete) DuplicateHandle support | bunnei | 2014-06-02 | 3 | -3/+77 |
| | | |||||
| * | kernel: changed main thread priority to default, updated Kernel::Reschedule to use PrepareReschedule | bunnei | 2014-06-02 | 6 | -9/+17 |
| | | |||||
| * | svc: cleaned up function_wrappers, updated various SVCs to make use of pointer arguments | bunnei | 2014-06-02 | 2 | -31/+40 |
| | | |||||
| * | svc: added missing function wrapper for SleepThread | bunnei | 2014-06-01 | 1 | -0/+4 |
| | | |||||
| * | gsp: always pass through synchronization barrier for commands | bunnei | 2014-06-01 | 1 | -1/+16 |
| | | |||||
| * | svc: updated waitSychronization to not overwrite handle on return, added stub for SleepThread (does nothing) | bunnei | 2014-06-01 | 1 | -2/+21 |
| | | |||||
| * | thread: updated Reschedule to sit at a synchronization barrier when no other threads are ready for execution | bunnei | 2014-06-01 | 1 | -0/+18 |
| | | |||||
| * | event: added a hackish ability to set an event as "locked" to its current state, cleaned up some comments | bunnei | 2014-06-01 | 2 | -4/+32 |
| | | |||||
| * | hle: added stubbed service for ndm_u | bunnei | 2014-05-30 | 2 | -0/+65 |
| | | |||||
| * | service: cleaned up log messages | bunnei | 2014-05-30 | 1 | -2/+2 |
| | | |||||
| * | service: removed PT_A from, as this was just an alias for APT_U | bunnei | 2014-05-30 | 1 | -2/+0 |
| | | |||||
| * | srv: fix to log unimplemented service (instead of crash) | bunnei | 2014-05-30 | 1 | -6/+2 |
| | | |||||
| * | mutex: fixed typo in ReleaseMutex | bunnei | 2014-05-30 | 1 | -1/+3 |
| | | |||||
| * | hle: cleaned up log messages | bunnei | 2014-05-30 | 7 | -42/+47 |
| | | |||||
| * | svc: updated OutputDebugString to use OS_LOG | bunnei | 2014-05-30 | 1 | -1/+1 |
| | | |||||
| * | svc: changed unimplemented SVC log messages from "debug" messages to "error" messages | bunnei | 2014-05-30 | 1 | -8/+8 |
| | | |||||
| * | svc: added svcClearEvent, stubbed function for svcArbitrateAddress, and various fixes | bunnei | 2014-05-30 | 2 | -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 comments | bunnei | 2014-05-30 | 2 | -9/+14 |
| | | |||||
| * | service: added additional hack to return success on unimplemented service calls | bunnei | 2014-05-30 | 1 | -2/+10 |
| | | |||||
| * | srv: changed a NOTICE_LOG to DEBUG_LOG | bunnei | 2014-05-30 | 1 | -1/+1 |
| | | |||||
| * | svc: added ArbitrationType enumeration | bunnei | 2014-05-30 | 1 | -0/+9 |
| | | |||||
| * | apt: added stubbed function for InquireNotification | bunnei | 2014-05-29 | 1 | -78/+86 |
| | | |||||
| * | hle: properly cast 64-bit function wrapper parameters to (u64) | bunnei | 2014-05-29 | 1 | -2/+2 |
| | | |||||
| * | hle: removed PARAM64 macro (this was incorrect), made several bug fixes accordingly for decoding U64 function parameters | bunnei | 2014-05-29 | 2 | -3/+2 |
| | | |||||
| * | service: changed interface to return 0 (no error) when a service method is unimplemented - hack to make apps boot further | bunnei | 2014-05-29 | 1 | -2/+2 |
| | | |||||
| * | APT_U: added stubbed function for APT_U::Enable, fixed some log messages to be more consistent | bunnei | 2014-05-28 | 1 | -3/+10 |
| | | |||||
| * | mutex: added preliminary SyncRequest/WaitSynchronization, added some comments/assertions | bunnei | 2014-05-28 | 1 | -0/+6 |
| | | |||||
| * | svc: implemented WaitSynchronization1, WaitSynchronizationN, and CreateEvent | bunnei | 2014-05-28 | 1 | -14/+54 |
| | | |||||
| * | APT_U: added event creation to Initialize method | bunnei | 2014-05-28 | 1 | -1/+11 |
| | | |||||
| * | event: fixed typos and updated CMakeLists | bunnei | 2014-05-28 | 1 | -1/+1 |
| | | |||||
| * | event: added SetEventLocked method to change status an events lock | bunnei | 2014-05-28 | 2 | -0/+18 |
| | | |||||
| * | kernel: added event module to support creation of CTR "Event" objects | bunnei | 2014-05-28 | 2 | -0/+119 |
| | | |||||
| * | mutex: removed docstring comment that is no longer relevant | bunnei | 2014-05-27 | 1 | -1/+0 |
| | | |||||
| * | mutex: added additional docstrings | bunnei | 2014-05-27 | 1 | -0/+2 |
| | | |||||
| * | kernel: added WaitSynchronization method to Kernel::Object | bunnei | 2014-05-27 | 4 | -0/+39 |
| | | |||||
| * | kernel: updated SyncRequest to take boolean thread wait result as a parameter | bunnei | 2014-05-27 | 5 | -10/+33 |
| | | |||||
| * | svc: added some assertions | bunnei | 2014-05-27 | 1 | -6/+4 |
| | | |||||
| * | service: Renamed Sync to SyncRequest | bunnei | 2014-05-27 | 1 | -1/+1 |
| | | |||||
| * | kernel: added enum for known CurrentThread and CurrentProcess handles | bunnei | 2014-05-27 | 1 | -0/+5 |
| | | |||||
| * | srv: added a real mutex for GetProcSemaphore (instead of stubbed) | bunnei | 2014-05-27 | 1 | -3/+10 |
| | | |||||
| * | svc: changed SendSyncRequest to use Kernel::Object SyncRequest (instead of just service Interface class) | bunnei | 2014-05-27 | 1 | -2/+2 |
| | | |||||
| * | kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequest | bunnei | 2014-05-27 | 4 | -6/+11 |
| | | |||||
| * | svc: added stub for DuplicateHandle SVC call | bunnei | 2014-05-27 | 1 | -1/+8 |
| | | |||||
* | | GPU debugger: Add functionality to inspect command lists. | Tony Wasserka | 2014-06-12 | 1 | -0/+4 |
| | | |||||
* | | GPU: Cleanup register definitions. | Tony Wasserka | 2014-06-12 | 1 | -3/+3 |
| | | |||||
* | | Rename LCD to GPU. | Tony Wasserka | 2014-06-12 | 1 | -8/+8 |
| | | |||||
* | | Add initial graphics debugger interface. | Tony Wasserka | 2014-06-12 | 1 | -0/+6 |
| | | |||||
* | | GSP: Define more GX commands. | Tony Wasserka | 2014-06-12 | 2 | -14/+54 |
| | | |||||
* | | service: fixed typo that MSVC did not catch as an error | bunnei | 2014-05-23 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'threading' | bunnei | 2014-05-23 | 21 | -131/+1124 |
|\| | |||||
| * | svc: added a check to ensure that a service was implemented before attempting to connect to its port | bunnei | 2014-05-23 | 1 | -1/+5 |
| | | |||||
| * | thread: renamed "WaitCurThread" to "WaitCurrentThread", removed unused "reason" argument | bunnei | 2014-05-23 | 3 | -6/+6 |
| | | |||||
| * | thread: removed unused SwitchContext/Reschedule reason field, added missing arg parameter to SVC CreateThread | bunnei | 2014-05-23 | 3 | -12/+9 |
| | | |||||
| * | kernel: refactored function naming to remove "__" prefix | bunnei | 2014-05-23 | 5 | -62/+72 |
| | | |||||
| * | thread: moved ThreadStatus/WaitType to header, added support for arg on CreateThread, added correct CPSR reset | bunnei | 2014-05-23 | 2 | -35/+40 |
| | | |||||
| * | APT_U: added a debug log on calling GetLockHandle | bunnei | 2014-05-23 | 1 | -0/+1 |
| | | |||||
| * | thread: fixed bug where result of __NextThread was not being properly checked when NULL | bunnei | 2014-05-22 | 1 | -1/+1 |
| | | |||||
| * | svc: added Kernel::Reschedule to svc WaitSynchronization1, updated log messages to include newly created handles | bunnei | 2014-05-22 | 1 | -4/+7 |
| | | |||||
| * | svc: enabled use of newly created kernel thread handle | bunnei | 2014-05-21 | 1 | -5/+5 |
| | | |||||
| * | mutex: refactored the interface to code to return a Mutex* handle | bunnei | 2014-05-21 | 4 | -5/+16 |
| | | |||||
| * | mutex: initial commit of HLE module | bunnei | 2014-05-21 | 4 | -10/+157 |
| | | |||||
| * | svc: added some comments | bunnei | 2014-05-21 | 1 | -0/+7 |
| | | |||||
| * | kernel: fixed include, in general include "common.h" not "common_types.h" | bunnei | 2014-05-21 | 1 | -1/+1 |
| | | |||||
| * | service: removed redundant include of common_types.h | bunnei | 2014-05-21 | 1 | -1/+0 |
| | | |||||
| * | thread: added correct lowest thread priority, added a thread priority check, and added some comments | bunnei | 2014-05-21 | 2 | -6/+10 |
| | | |||||
| * | thread: exposed ResumeThreadFromWait function for use in other kernel modules | bunnei | 2014-05-21 | 2 | -8/+11 |
| | | |||||
| * | thread: moved threading calls to the Kernel namespace | bunnei | 2014-05-21 | 4 | -103/+117 |
| | | |||||
| * | ARM_Interface: added SaveContext and LoadContext functions for HLE thread switching | bunnei | 2014-05-21 | 1 | -36/+2 |
| | | |||||
| * | renamed "syscall" module to "svc" (more accurate naming) | bunnei | 2014-05-21 | 6 | -17/+19 |
| | | |||||
| * | thread: whitespace change - fixed * and & placement | bunnei | 2014-05-21 | 2 | -27/+27 |
| | | |||||
| * | - created a Kernel namespace | bunnei | 2014-05-21 | 6 | -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 code | bunnei | 2014-05-20 | 1 | -1/+1 |
| | | |||||
| * | thread: added declaration for __KernelReschedule to be used by syscall module | bunnei | 2014-05-20 | 1 | -0/+3 |
| | | |||||
| * | renamed "session" to "handle" | bunnei | 2014-05-19 | 1 | -3/+3 |
| | | |||||
| * | - renamed NewHandle to CreateHandle | bunnei | 2014-05-19 | 2 | -8/+8 |
| | | | | | | | | - updated CreateHandle/DeleteHandle to use KernelObject's | ||||
| * | fix warning | bunnei | 2014-05-19 | 1 | -1/+1 |
| | | |||||
| * | - updated service(s) to be KernelObject's | bunnei | 2014-05-19 | 7 | -59/+31 |
| | | | | | | | | - various cleanups | ||||
| * | renamed "UID" to "Handle" where appropriate | bunnei | 2014-05-19 | 4 | -24/+22 |
| | | |||||
| * | - moved Handle/Result definitions to kernel.h | bunnei | 2014-05-19 | 6 | -14/+19 |
| | | | | | | | | - added ResetType enum | ||||
| * | - added stub for CreateEvent | bunnei | 2014-05-18 | 1 | -8/+22 |
| | | | | | | | | - changed some stubbed SVCs to return unique handle names for debugging purposes | ||||
| * | added stubbed function for WaitSynchronizationN | bunnei | 2014-05-18 | 2 | -4/+19 |
| | | |||||
| * | changed a comment | bunnei | 2014-05-17 | 2 | -2/+2 |
| | | |||||
| * | cleanups to SVC CreateThread | bunnei | 2014-05-17 | 1 | -8/+15 |
| | | |||||
| * | - added enum ThreadProcessorId | bunnei | 2014-05-17 | 2 | -53/+107 |
| | | | | | | | | | | - reorganized some kernel thread functions - added placeholder __KernelWaitThread_Synchronization function | ||||
| * | - replaced KERNELOBJECT_MAX_NAME_LENGTH with KERNEL_MAX_NAME_LENGTH | bunnei | 2014-05-17 | 3 | -8/+12 |
| | | | | | | | | - added KERNEL_DEFAULT_STACK_SIZE definition (0x4000) | ||||
| * | added stubbed GetProcSemaphore - does nothing but avoids an exception | bunnei | 2014-05-17 | 1 | -1/+7 |
| | | |||||
| * | updated APT_U::GetLockHandle to return a valid handle | bunnei | 2014-05-17 | 1 | -1/+5 |
| | | |||||
| * | Merge master into threading to add support for VFP | bunnei | 2014-05-17 | 2 | -21/+2 |
| |\ | |||||
| * | | - added SVC stubs for QueryMemory and GetThreadId | bunnei | 2014-05-16 | 3 | -2/+30 |
| | | | | | | | | | | | | - added SVC structs MemoryInfo and PageInfo | ||||
| * | | completely gutted/refactored threading code to be simpler | bunnei | 2014-05-16 | 2 | -658/+230 |
| | | | |||||
| * | | changed "UID" to "Handle" to be a little more consistent with CTR naming | bunnei | 2014-05-16 | 2 | -18/+21 |
| | | | |||||
| * | | - added ThreadContext struct | bunnei | 2014-05-16 | 2 | -8/+26 |
| | | | | | | | | | | | | - cleaned up CreateThread svc | ||||
| * | | - added helper function for __KernelCreateThread | bunnei | 2014-05-15 | 2 | -4/+76 |
| | | | | | | | | | | | | | | | - added __KernelSwitchToThread for enabling a thread - added __KernelRotateThreadReadyQueue | ||||
| * | | changed primary thread priority to 0x30 - this is typical, not 0x31 | bunnei | 2014-05-15 | 1 | -1/+2 |
| | | | |||||
| * | | added function stubs for EatCycles and ReSchedule | bunnei | 2014-05-15 | 2 | -0/+15 |
| | | | |||||
| * | | fixed thread reset to not set stack address | bunnei | 2014-05-14 | 1 | -1/+1 |
| | | | |||||
| * | | various cleanups / remove unused code | bunnei | 2014-05-14 | 2 | -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 point | bunnei | 2014-05-14 | 2 | -70/+543 |
| | | | |||||
| * | | added CreateThread, CreateMutex, and ReleaseMutex SVC stubs (just parameter decoding for now) | bunnei | 2014-05-14 | 2 | -7/+38 |
| | | | |||||
| * | | - added __KernelLoadExec function | bunnei | 2014-05-14 | 2 | -13/+35 |
| | | | | | | | | | | | | - fixed some logging | ||||
| * | | added initial kernel/thread modules | bunnei | 2014-05-10 | 4 | -0/+527 |
| | | | |||||
* | | | Merge remote-tracking branch 'upstream/master' into issue-7-fix | archshift | 2014-05-17 | 13 | -282/+403 |
|\ \ \ | | |/ | |/| | |||||
| * | | - reenabled MCR and MRC functions now that VFP is attached | bunnei | 2014-05-17 | 2 | -21/+2 |
| |/ | | | | | | | - removed HLE::CallMCR function (was pointless) | ||||
| * | removed unknown fields from GX_CmdBufferHeader | bunnei | 2014-05-08 | 1 | -5/+0 |
| | | |||||
| * | removed unnecessary log message | bunnei | 2014-05-08 | 1 | -1/+1 |
| | | |||||
| * | - removed HLE mem "hack" and replaced with kernel mem region | bunnei | 2014-05-08 | 7 | -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.cpp | bunnei | 2014-05-07 | 2 | -135/+173 |
| | | | | | | | | - added stubbed HLE syscall functions for svc_GetResourceLimit and svc_GetResourceLimitCurrentValues | ||||
| * | added config_mem module for HLE of firmware configuration memory settings | bunnei | 2014-05-07 | 2 | -0/+91 |
| | | |||||
| * | - added CallMCR function to coprocessor HLE module | bunnei | 2014-05-02 | 2 | -7/+20 |
| | | | | | | | | - moved instruction decoding to coprocessor HLE module | ||||
| * | fixed include in coprocessor.cpp | bunnei | 2014-05-02 | 1 | -1/+1 |
| | | |||||
| * | renamed hle "mrc" module to "coprocessor" | bunnei | 2014-05-02 | 2 | -0/+0 |
| | | |||||
| * | - added some function wrappers for HLE | bunnei | 2014-05-02 | 2 | -10/+29 |
| | | | | | | | | | | - added stub for SVC CreateAddressArbiter - added OutputDebugString SVC | ||||
* | | Problematic template functions | archshift | 2014-04-28 | 1 | -15/+0 |
|/ | |||||
* | removed DISALLOW_COPY_AND_ASSIGN in favor of NonCopyable class | bunnei | 2014-04-28 | 3 | -9/+0 |
| | |||||
* | fixed weird spacing | bunnei | 2014-04-28 | 1 | -1/+1 |
| | |||||
* | hackish but working way to set the framebuffer location to VRAM (used in ARM11 demos tested thus far, e.g. yeti3DS) | bunnei | 2014-04-27 | 1 | -3/+9 |
| | |||||
* | added simple GSP GPU ReadHWRegs function to support returning the framebuffer address | bunnei | 2014-04-26 | 1 | -1/+37 |
| | |||||
* | added preliminary DataSynchronizationBarrier support with simple DMA copy | bunnei | 2014-04-26 | 1 | -7/+39 |
| | |||||
* | moved HLE::MRC to its own module, added support for catching data synchronization barrier command | bunnei | 2014-04-25 | 4 | -10/+52 |
| | |||||
* | fixed bug where svc_ControlMemory was not properly getting passed in parameters | bunnei | 2014-04-25 | 1 | -2/+2 |
| | |||||
* | - added preliminary support for svc_MapMemoryBlock | bunnei | 2014-04-25 | 1 | -4/+34 |
| | | | | | - added shared memory region - moarrrr cleanups to memory_map | ||||
* | added GSP::RegisterInterruptRelayQueue function | bunnei | 2014-04-25 | 1 | -31/+40 |
| | |||||
* | - refactored how service functions are called | bunnei | 2014-04-25 | 5 | -19/+39 |
| | | | | - added option to create/delete service handles | ||||
* | renamed hw_lcd module to just lcd | bunnei | 2014-04-18 | 1 | -2/+0 |
| | |||||
* | added GSP heap memory allocation | bunnei | 2014-04-18 | 1 | -1/+25 |
| | |||||
* | added a new function wrapper | bunnei | 2014-04-17 | 1 | -0/+5 |
| | |||||
* | fixed bug with printing std::string in log messages | bunnei | 2014-04-17 | 1 | -2/+2 |
| | |||||
* | added class stub for HID:User service | bunnei | 2014-04-17 | 3 | -0/+72 |
| | |||||
* | updated service comments | bunnei | 2014-04-17 | 6 | -5/+17 |
| | |||||
* | - fixed tabs in function_wrappers.h | bunnei | 2014-04-17 | 4 | -395/+413 |
| | | | | | - fixed log message wording in hle.cpp - added syscall stubs for CloseHandle and WaitSynchronization1 | ||||
* | - added stubbed out GSP::Gpu service interface | bunnei | 2014-04-16 | 7 | -7/+103 |
| | | | | - various cleanups/refactors to HLE services | ||||
* | removed no longer used function header | bunnei | 2014-04-16 | 1 | -2/+0 |
| | |||||
* | restructured hle:services completely to use function lookup tables | bunnei | 2014-04-16 | 5 | -137/+215 |
| | |||||
* | fixed naming for APT_U | bunnei | 2014-04-16 | 3 | -9/+9 |
| | |||||
* | - extracted srv: calls from service.cpp and put in its own module | bunnei | 2014-04-16 | 4 | -106/+105 |
| | | | | | - added function tables for service calls - lots of refactoring | ||||
* | added a stub for GetLockHandle | bunnei | 2014-04-14 | 3 | -9/+44 |
| | |||||
* | added framework for APT service (application and title launching service) | bunnei | 2014-04-13 | 5 | -5/+118 |
| | |||||
* | renamed class Interface_SRV to SRV | bunnei | 2014-04-13 | 1 | -6/+6 |
| | |||||
* | added some very initial command parsing for SRV Sync | bunnei | 2014-04-13 | 1 | -5/+31 |
| | |||||
* | added a GetPointer function for reading from HLE command buffer | bunnei | 2014-04-13 | 2 | -0/+14 |
| | |||||
* | added OS memory read/write for thread command buffer | bunnei | 2014-04-13 | 2 | -3/+55 |
| | |||||
* | cleanups to service HLE | bunnei | 2014-04-13 | 2 | -8/+8 |
| | |||||
* | - added HLE to connect to "srv:" service | bunnei | 2014-04-13 | 5 | -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 syscall | bunnei | 2014-04-12 | 5 | -101/+145 |
| | | | | - added service.h as an initial service interface | ||||
* | replace tabs with spaces | bunnei | 2014-04-12 | 1 | -6/+6 |
| | |||||
* | moved hle.cpp into hle folder (due to mistake earlier) | bunnei | 2014-04-12 | 1 | -0/+57 |
| | |||||
* | added remaining known syscall functions to Syscall_Table | bunnei | 2014-04-11 | 1 | -0/+80 |
| | |||||
* | base code to call a syscall from ARM11 appcore | bunnei | 2014-04-11 | 3 | -7/+56 |
| | |||||
* | changed some naming/misc cleanups | bunnei | 2014-04-11 | 3 | -18/+17 |
| | |||||
* | - removed syscall classes (will just use HLEFunction) | bunnei | 2014-04-11 | 3 | -15/+17 |
| | | | | | - added hle.cpp and module registration - removed unused code | ||||
* | added initial modules for setting up SysCall HLE | bunnei | 2014-04-11 | 4 | -0/+825 |