stats: update stats for mmap() change.
[gem5.git] / src / arch / arm / ArmSystem.py
index 1e5acc4e658e1a427cbcd8acb507130ba0c4045d..9bb939c5e1cfa903a4c80fe714099c170f5003c0 100644 (file)
@@ -40,10 +40,13 @@ from m5.params import *
 from System import System
 
 class ArmMachineType(Enum):
-    map = {'RealView_EB' : 827,
-           'RealView_PBX' : 1901,
-           'VExpress_EMM' : 2272,
-           'VExpress_EMM64' : 2272}
+    map = {
+        'RealViewEB' : 827,
+        'RealViewPBX' : 1901,
+        'VExpress_EMM' : 2272,
+        'VExpress_EMM64' : 2272,
+        'DTOnly' : -1,
+    }
 
 class ArmSystem(System):
     type = 'ArmSystem'