mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-15 08:26:56 +00:00
11 lines
290 B
C
11 lines
290 B
C
|
#pragma once
|
||
|
|
||
|
void flush_dcache_all(void);
|
||
|
void invalidate_dcache_all(void);
|
||
|
|
||
|
void flush_dcache_range(const void *start, const void *end);
|
||
|
void invalidate_dcache_range(const void *start, const void *end);
|
||
|
|
||
|
void invalidate_icache_all_inner_shareable(void);
|
||
|
void invalidate_icache_all(void);
|