diff options
author | Ali Saidi <Ali.Saidi@ARM.com> | 2011-08-19 15:08:08 -0500 |
---|---|---|
committer | Ali Saidi <Ali.Saidi@ARM.com> | 2011-08-19 15:08:08 -0500 |
commit | d2a0a2ec2202eb8fa04ddd3e359c1c9dc7f04cb1 (patch) | |
tree | d860647b9b060830dadd41c1ee34774667ddf6ae /src/arch | |
parent | 23755eb43428845737aa514314f1bd0ace5d5372 (diff) | |
download | gem5-d2a0a2ec2202eb8fa04ddd3e359c1c9dc7f04cb1.tar.xz |
ARM: Add support for Versatile Express boards
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/arm/ArmSystem.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/arch/arm/ArmSystem.py b/src/arch/arm/ArmSystem.py index 9bd11041a..495211248 100644 --- a/src/arch/arm/ArmSystem.py +++ b/src/arch/arm/ArmSystem.py @@ -41,7 +41,8 @@ from System import System class ArmMachineType(Enum): map = {'RealView_EB' : 827, - 'RealView_PBX' : 1901 } + 'RealView_PBX' : 1901, + 'VersatileExpress' : 2272} class ArmSystem(System): type = 'ArmSystem' |