| 945 | } |
| 946 | |
| 947 | MemoryRef MemorySystem::GetFCRAMRef(std::size_t offset) const { |
| 948 | ASSERT(offset <= Memory::FCRAM_N3DS_SIZE); |
| 949 | return MemoryRef(impl->fcram_mem, offset); |
| 950 | } |
| 951 | |
| 952 | void MemorySystem::SetDSP(AudioCore::DspInterface& dsp) { |
| 953 | impl->dsp = &dsp; |
no test coverage detected