summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/dsp_dsp.h
blob: 32b89e9bb153049c3add187f543abedc51229115 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <string>

#include "core/hle/service/service.h"

////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace DSP_DSP

namespace DSP_DSP {

class Interface : public Service::Interface {
public:
    Interface();
    ~Interface() override;

    std::string GetPortName() const override {
        return "dsp::DSP";
    }
};

/// Signal all audio related interrupts.
void SignalAllInterrupts();

/**
 * Signal a specific audio related interrupt based on interrupt id and channel id.
 * @param interrupt_id The interrupt id
 * @param channel_id The channel id
 * The significance of various values of interrupt_id and channel_id is not yet known.
 */
void SignalInterrupt(u32 interrupt_id, u32 channel_id);

} // namespace