mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
23 lines
248 B
C
23 lines
248 B
C
#include <irq.h>
|
|
#include <uart.h>
|
|
|
|
#include <system.h>
|
|
|
|
void flush_cpu_icache(void)
|
|
{
|
|
asm volatile(
|
|
"wcsr ICC, r0\n"
|
|
"nop\n"
|
|
"nop\n"
|
|
"nop\n"
|
|
"nop\n"
|
|
);
|
|
}
|
|
|
|
void flush_cpu_dcache(void)
|
|
{
|
|
asm volatile(
|
|
"wcsr DCC, r0\n"
|
|
"nop\n"
|
|
);
|
|
}
|