xref: /haiku/src/system/libroot/os/arch/riscv64/cachectl.cpp (revision 4c8e85b316c35a9161f5a1c50ad70bc91c83a76f)
1 /*
2  * Copyright 2021, Haiku, Inc.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 extern "C" void
8 __riscv_flush_icache(void *start, void *end, unsigned long int flags)
9 {
10 	__asm__ volatile ("fence.i");
11 }
12