diff options
author | Edgar E. Iglesias <edgar.iglesias@gmail.com> | 2009-09-03 13:04:02 +0200 |
---|---|---|
committer | Edgar E. Iglesias <edgar.iglesias@gmail.com> | 2009-09-03 13:04:02 +0200 |
commit | 3c50a71fc933c0ffba82c95111fa780e6110d79f (patch) | |
tree | 3bb24740badedc53c1c416c3338ad08bc85c3bbd /target-microblaze/mmu.h | |
parent | 968a40f6fac887846d1316e737619233978a0cee (diff) |
microblaze: MMU shows more respect to synthesis config.
The microblaze MMU can be synthesized in different configurations.
Have the MMU model show more respect to the chosen configuration.
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Diffstat (limited to 'target-microblaze/mmu.h')
-rw-r--r-- | target-microblaze/mmu.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/target-microblaze/mmu.h b/target-microblaze/mmu.h index 814c33cc7b..56149a54fd 100644 --- a/target-microblaze/mmu.h +++ b/target-microblaze/mmu.h @@ -63,7 +63,11 @@ struct microblaze_mmu /* We keep a separate ram for the tids to avoid the 48 bit tag width. */ uint8_t tids[TLB_ENTRIES]; /* Control flops. */ - uint32_t regs[8];; + uint32_t regs[8]; + + int c_mmu; + int c_mmu_tlb_access; + int c_mmu_zones; }; struct microblaze_mmu_lookup |