diff options
Diffstat (limited to 'target-cris/mmu.h')
-rw-r--r-- | target-cris/mmu.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/target-cris/mmu.h b/target-cris/mmu.h index 519c0fc819..aef8c1b0e9 100644 --- a/target-cris/mmu.h +++ b/target-cris/mmu.h @@ -7,14 +7,10 @@ struct cris_mmu_result_t { uint32_t phy; uint32_t pfn; - int g:1; - int v:1; - int k:1; - int w:1; - int e:1; - int cause_op; + int bf_vec; }; +target_ulong cris_mmu_tlb_latest_update(CPUState *env, uint32_t new_lo); int cris_mmu_translate(struct cris_mmu_result_t *res, CPUState *env, uint32_t vaddr, int rw, int mmu_idx); |