summaryrefslogtreecommitdiff
path: root/src/arch/arm/isa.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/arm/isa.hh')
-rw-r--r--src/arch/arm/isa.hh5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/arch/arm/isa.hh b/src/arch/arm/isa.hh
index f4ff58a28..41382e510 100644
--- a/src/arch/arm/isa.hh
+++ b/src/arch/arm/isa.hh
@@ -131,6 +131,9 @@ namespace ArmISA
(0 << 0) | //Revision
0;
+ // Separate Instruction and Data TLBs.
+ miscRegs[MISCREG_TLBTR] = 1;
+
//XXX We need to initialize the rest of the state.
}
@@ -269,6 +272,8 @@ namespace ArmISA
case MISCREG_CSSELR:
warn("The csselr register isn't implemented.\n");
break;
+ case MISCREG_TLBTR:
+ return;
}
return setMiscRegNoEffect(misc_reg, newVal);
}