diff options
Diffstat (limited to 'src/arch/power/isa.hh')
-rw-r--r-- | src/arch/power/isa.hh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/arch/power/isa.hh b/src/arch/power/isa.hh index 3f26f57de..16850d147 100644 --- a/src/arch/power/isa.hh +++ b/src/arch/power/isa.hh @@ -50,8 +50,8 @@ namespace PowerISA class ISA : public SimObject { protected: - MiscReg dummy; - MiscReg miscRegs[NumMiscRegs]; + RegVal dummy; + RegVal miscRegs[NumMiscRegs]; public: typedef PowerISAParams Params; @@ -61,14 +61,14 @@ class ISA : public SimObject { } - MiscReg + RegVal readMiscRegNoEffect(int misc_reg) const { fatal("Power does not currently have any misc regs defined\n"); return dummy; } - MiscReg + RegVal readMiscReg(int misc_reg, ThreadContext *tc) { fatal("Power does not currently have any misc regs defined\n"); @@ -76,13 +76,13 @@ class ISA : public SimObject } void - setMiscRegNoEffect(int misc_reg, MiscReg val) + setMiscRegNoEffect(int misc_reg, RegVal val) { fatal("Power does not currently have any misc regs defined\n"); } void - setMiscReg(int misc_reg, MiscReg val, ThreadContext *tc) + setMiscReg(int misc_reg, RegVal val, ThreadContext *tc) { fatal("Power does not currently have any misc regs defined\n"); } |