summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/dsp_dsp.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add all services to the Service namespaceLioncash2016-12-111-4/+3
| | | | | Previously there was a split where some of the services were in the Service namespace and others were not.
* Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner2016-09-211-1/+1
|
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-4/+1
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-65/+88
|
* DSP_DSP: Remove use of Memory::GetPointerMerryMage2016-05-281-7/+10
|
* DSP_DSP: Remove GetHeadphoneStatus logspam (#1799)Maribel2016-05-161-2/+2
|
* fixup simple type conversions where possibleAlexander Laties2016-05-071-2/+2
|
* DSP_DSP: Fix log format strings and argumentsMerryMage2016-04-271-12/+20
|
* DSP_DSP: Add return IPC headersMerryMage2016-04-271-4/+26
|
* DSP_DSP: Updated interrupt implementationMerryMage2016-04-271-33/+96
|
* DSP_DSP: Remove unused variableMerryMage2016-04-241-2/+0
|
* svc: Move ResetType enum to the kernel event headerLioncash2016-03-131-1/+1
|
* svc: Make ResetType an enum classLioncash2016-03-121-1/+1
|
* DSP: Implement Pipe 2MerryMage2016-03-061-43/+151
| | | | | | Pipe 2 is a DSP pipe that is used to initialize both the DSP hardware (the application signals to the DSP to initialize) and the application (the DSP provides the memory location of structures in the shared memory region).
* DSP: Print hash of firmware to consoleMerryMage2016-03-061-8/+21
|
* AudioCore: Skeleton ImplementationMerryMage2016-02-211-55/+80
| | | | | | | | | This commit: * Adds a new subproject, audio_core. * Defines structures that exist in DSP shared memory. * Hooks up various other parts of the emulator into audio core. This sets the foundation for a later HLE DSP implementation.
* services: Get rid of unnecessary includesLioncash2016-02-021-1/+0
|
* services: Update some function tablesLioncash2015-12-301-3/+11
|
* general: Silence some warnings when using clangLioncash2015-09-161-2/+2
|
* Ensure all kernel objects are released during shutdownYuri Kunde Schlesner2015-07-171-0/+5
| | | | | | | | This commit fixes several kernel object leaks. The most severe of them was threads not being removed from the private handle table used for CoreTiming events. This resulted in Threads never being released, which in turn held references to Process, causing CodeSets to never be freed when loading other applications.
* Memory: Re-organize and rename memory area address constantsYuri Kunde Schlesner2015-05-091-1/+1
|
* Common: Remove common.hYuri Kunde Schlesner2015-05-071-0/+2
|
* Services: Initialize all state variables at bootup.bunnei2015-05-021-1/+1
|
* Services/Loader: Use more sensible log formats for certain functionspurpasmart962015-04-281-6/+20
| | | | along with more info being logged.
* Services: Stubs and minor changespurpasmart962015-04-031-2/+29
|
* core: Apply static to local functionsLioncash2015-02-131-9/+9
|
* Asserts: break/crash program, fit to style guide; log.h->assert.harchshift2015-02-111-1/+0
| | | | | | | Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft.
* Merge pull request #526 from purpasmart96/citra_stubsbunnei2015-02-111-3/+63
|\ | | | | Services: Stub some functions
| * Services: Stub some functionspurpasmart962015-02-081-3/+63
| |
* | Kernel: Stop creating useless Handles during object creationYuri Kunde Schlesner2015-02-021-2/+1
| | | | | | | | | | They're finally unnecessary, and will stop cluttering the application's handle table.
* | Service: Clean-up InterfaceYuri Kunde Schlesner2015-02-021-1/+1
|/
* Kernel: Convert Event to not use HandlesYuri Kunde Schlesner2015-01-301-9/+17
|
* DSP: Removed useless spam log for SignalInterruptbunnei2015-01-161-5/+2
|
* DSP: Signal (faked) interrupt on every frame.bunnei2015-01-051-4/+18
| | | | - Hack to work around games checking that the DSP event has been signaled by a real DSP interrupt.
* More services & small clean upspurpasmart962014-12-261-3/+0
|
* License changepurpasmart962014-12-211-1/+1
|
* Remove SyncRequest from K::Object and create a new K::Session typeYuri Kunde Schlesner2014-12-151-6/+6
| | | | | | | 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.)
* Convert old logging calls to new logging macrosYuri Kunde Schlesner2014-12-131-7/+7
|
* DSP: Added stub for ReadPipeIfPossible.bunnei2014-12-121-1/+45
|
* Add stub for ConvertProcessFromDspDramarchshift2014-12-041-25/+44
| | | | Should theoretically push retail stuff further along
* DSP: Added stubs for several commonly used DSP service functions.bunnei2014-12-011-25/+106
|
* Add more services and some fixes, along with more "override"purpasmart962014-11-211-2/+2
| | | | in the service's headers
* Added a bunch of servicespurpasmart962014-11-011-0/+52