arch-power: Fix disassembly for load-store instructions
[gem5.git] / src / arch / power / PowerTLB.py
index ae6503a1f16558d266b58027f40195b2621e691d..7f9a2715b890d596f97055adfb78854f603ffe94 100644 (file)
 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# Authors: Timothy M. Jones
 
 from m5.SimObject import SimObject
 from m5.params import *
 
-class PowerTLB(SimObject):
+from m5.objects.BaseTLB import BaseTLB
+
+class PowerTLB(BaseTLB):
     type = 'PowerTLB'
     cxx_class = 'PowerISA::TLB'
     cxx_header = 'arch/power/tlb.hh'