60a61,64
> #include <iostream>
> #include <string>
>
> #include "sim/host.hh"
62a67,68
> class Checkpoint;
>
65c71
< class ITB : public GenericITB
---
> struct TlbEntry
66a73,82
> Addr pageStart;
> TlbEntry() {}
> TlbEntry(Addr paddr) : pageStart(paddr) {}
>
> void serialize(std::ostream &os);
> void unserialize(Checkpoint *cp, const std::string &section);
> };
>
> class ITB : public GenericITB<false, false>
> {
68c84
< ITB(const std::string &name) : GenericITB(name)
---
> ITB(const std::string &name) : GenericITB<false, false>(name)
72c88
< class DTB : public GenericDTB
---
> class DTB : public GenericDTB<false, false>
75c91
< DTB(const std::string &name) : GenericDTB(name)
---
> DTB(const std::string &name) : GenericDTB<false, false>(name)