X86: Define a noop ExtMachInst.
[gem5.git] / src / arch / alpha / AlphaTLB.py
index 559516725afc1c38f5f484cea97dca73bf9e8446..51f636ec26262e3a9d9eb820f2adfbba5753a3d6 100644 (file)
 
 from m5.SimObject import SimObject
 from m5.params import *
-class AlphaTLB(SimObject):
+
+from BaseTLB import BaseTLB
+
+class AlphaTLB(BaseTLB):
     type = 'AlphaTLB'
-    abstract = True
+    cxx_class = 'AlphaISA::TLB'
     size = Param.Int("TLB size")
 
 class AlphaDTB(AlphaTLB):
-    type = 'AlphaDTB'
     size = 64
 
 class AlphaITB(AlphaTLB):
-    type = 'AlphaITB'
     size = 48