48d47
< #include "config/full_system.hh"
50a50
> #include "sim/full_system.hh"
71,76c71,76
< #if FULL_SYSTEM
< HandyM5Reg m5reg = tc->readMiscRegNoEffect(MISCREG_M5_REG);
< return m5reg.cpl == 3;
< #else
< return true;
< #endif
---
> if (!FullSystem) {
> return true;
> } else {
> HandyM5Reg m5reg = tc->readMiscRegNoEffect(MISCREG_M5_REG);
> return m5reg.cpl == 3;
> }
86,87d85
< #if FULL_SYSTEM
<
90,91d87
< #endif
<