diff options
author | MerryMage <MerryMage@users.noreply.github.com> | 2016-01-30 19:41:04 +0100 |
---|---|---|
committer | MerryMage <MerryMage@users.noreply.github.com> | 2016-01-30 19:41:04 +0100 |
commit | 2b9331334884349dc38cb9a447018dca0e5b0d9d (patch) | |
tree | 2ee280a21014808f190d7362a41ccd25e93dd2f4 /src/core/memory_setup.h | |
parent | Merge pull request #1360 from lioncash/var (diff) | |
download | yuzu-2b9331334884349dc38cb9a447018dca0e5b0d9d.tar yuzu-2b9331334884349dc38cb9a447018dca0e5b0d9d.tar.gz yuzu-2b9331334884349dc38cb9a447018dca0e5b0d9d.tar.bz2 yuzu-2b9331334884349dc38cb9a447018dca0e5b0d9d.tar.lz yuzu-2b9331334884349dc38cb9a447018dca0e5b0d9d.tar.xz yuzu-2b9331334884349dc38cb9a447018dca0e5b0d9d.tar.zst yuzu-2b9331334884349dc38cb9a447018dca0e5b0d9d.zip |
Diffstat (limited to 'src/core/memory_setup.h')
-rw-r--r-- | src/core/memory_setup.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/memory_setup.h b/src/core/memory_setup.h index 84ff30120..05f70a1fe 100644 --- a/src/core/memory_setup.h +++ b/src/core/memory_setup.h @@ -23,10 +23,11 @@ void MapMemoryRegion(VAddr base, u32 size, u8* target); /** * Maps a region of the emulated process address space as a IO region. - * @note Currently this can only be used to mark a region as being IO, since actual memory-mapped - * IO isn't yet supported. + * @param base The address to start mapping at. Must be page-aligned. + * @param size The amount of bytes to map. Must be page-aligned. + * @param mmio_handler The handler that backs the mapping. */ -void MapIoRegion(VAddr base, u32 size); +void MapIoRegion(VAddr base, u32 size, MMIORegionPointer mmio_handler); void UnmapRegion(VAddr base, u32 size); |