xref: /haiku/src/system/libroot/os/arch/riscv64/cachectl.cpp (revision 28c8a16a5ae6b3f530168f4597a1bc48207d342a)
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