mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-10 12:50:04 +00:00
core: Remove usage of MemoryRef
This commit is contained in:
parent
ac792f7b98
commit
e00a49e1e5
23 changed files with 151 additions and 293 deletions
|
@ -4,14 +4,11 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <array>
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
#include "audio_core/audio_types.h"
|
||||
#include "audio_core/dsp_interface.h"
|
||||
#include "common/common_types.h"
|
||||
#include "core/hle/service/dsp/dsp_dsp.h"
|
||||
#include "core/memory.h"
|
||||
|
||||
namespace Core {
|
||||
class Timing;
|
||||
|
@ -36,7 +33,7 @@ public:
|
|||
std::size_t GetPipeReadableSize(DspPipe pipe_number) const override;
|
||||
void PipeWrite(DspPipe pipe_number, std::span<const u8> buffer) override;
|
||||
|
||||
std::array<u8, Memory::DSP_RAM_SIZE>& GetDspMemory() override;
|
||||
std::span<u8, Memory::DSP_RAM_SIZE> GetDspMemory() override;
|
||||
|
||||
void SetInterruptHandler(
|
||||
std::function<void(Service::DSP::InterruptType type, DspPipe pipe)> handler) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue