61c61
< #error X86 is not yet supported!
---
> #include "sim/tlb.hh"
64a65,77
> class ITB : public GenericITB
> {
> public:
> ITB(const std::string &name) : GenericITB(name)
> {}
> };
>
> class DTB : public GenericDTB
> {
> public:
> DTB(const std::string &name) : GenericDTB(name)
> {}
> };