| 935 | } |
| 936 | |
| 937 | u8* MemorySystem::GetFCRAMPointer(std::size_t offset) { |
| 938 | ASSERT(offset <= Memory::FCRAM_N3DS_SIZE); |
| 939 | return impl->fcram.get() + offset; |
| 940 | } |
| 941 | |
| 942 | const u8* MemorySystem::GetFCRAMPointer(std::size_t offset) const { |
| 943 | ASSERT(offset <= Memory::FCRAM_N3DS_SIZE); |