48c48
< class ITB : public GenericITB<>
---
> class TLB : public GenericTLB
51c51
< ITB(const std::string &name) : GenericITB<>(name)
---
> TLB(const std::string &name) : GenericTLB(name)
52a53,54
>
> Fault translate(RequestPtr req, ThreadContext *tc, bool=false);
55c57
< class DTB : public GenericDTB<>
---
> class ITB : public TLB
58c60
< DTB(const std::string &name) : GenericDTB<>(name)
---
> ITB(const std::string &name) : TLB(name)
60a63,69
>
> class DTB : public TLB
> {
> public:
> DTB(const std::string &name) : TLB(name)
> {}
> };