You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
245 B
12 lines
245 B
#include "mmu.h"
|
|
|
|
void mmu_t::flush_tlb()
|
|
{
|
|
memset(tlb_data, 0, sizeof(tlb_data)); // TLB entry itself has valid bit
|
|
flush_icache();
|
|
}
|
|
|
|
void mmu_t::flush_icache()
|
|
{
|
|
memset(icache_tag, 0, sizeof(icache_tag)); // I$ tag contains valid bit
|
|
}
|
|
|