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