mirror of
https://github.com/cahirwpz/libnix.git
synced 2025-12-08 14:58:56 +00:00
8 lines
150 B
C
8 lines
150 B
C
#include <exec/execbase.h>
|
|
#include <proto/exec.h>
|
|
|
|
void __flush_cache(APTR adr, ULONG len)
|
|
{
|
|
CacheClearE(adr, len, CACRF_ClearD | CACRF_ClearI);
|
|
}
|