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