diff options
Diffstat (limited to 'src/arch/arm/ArmSystem.py')
-rw-r--r-- | src/arch/arm/ArmSystem.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/arch/arm/ArmSystem.py b/src/arch/arm/ArmSystem.py index 1e5acc4e6..9bb939c5e 100644 --- a/src/arch/arm/ArmSystem.py +++ b/src/arch/arm/ArmSystem.py @@ -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' |