dsp_dsp.h 586 B

1234567891011121314151617181920212223242526
  1. // Copyright 2014 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include "core/hle/service/service.h"
  6. ////////////////////////////////////////////////////////////////////////////////////////////////////
  7. // Namespace DSP_DSP
  8. namespace DSP_DSP {
  9. class Interface : public Service::Interface {
  10. public:
  11. Interface();
  12. std::string GetPortName() const override {
  13. return "dsp::DSP";
  14. }
  15. };
  16. /// Signals that a DSP interrupt has occurred to userland code
  17. void SignalInterrupt();
  18. } // namespace