diff options
Diffstat (limited to 'configs/example/arm')
-rw-r--r-- | configs/example/arm/starter_fs.py | 3 | ||||
-rw-r--r-- | configs/example/arm/starter_se.py | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/configs/example/arm/starter_fs.py b/configs/example/arm/starter_fs.py index 35ed2afa2..4061501ba 100644 --- a/configs/example/arm/starter_fs.py +++ b/configs/example/arm/starter_fs.py @@ -56,6 +56,7 @@ import argparse m5.util.addToPath('../..') from common import SysPaths +from common import ObjectList from common import MemConfig from common.cores.arm import HPI @@ -214,7 +215,7 @@ def main(): parser.add_argument("--num-cores", type=int, default=1, help="Number of CPU cores") parser.add_argument("--mem-type", default="DDR3_1600_8x8", - choices=MemConfig.mem_names(), + choices=ObjectList.mem_list.get_names(), help = "type of memory to use") parser.add_argument("--mem-channels", type=int, default=1, help = "number of memory channels") diff --git a/configs/example/arm/starter_se.py b/configs/example/arm/starter_se.py index b76be5f48..acd76dc87 100644 --- a/configs/example/arm/starter_se.py +++ b/configs/example/arm/starter_se.py @@ -55,6 +55,7 @@ import shlex m5.util.addToPath('../..') +from common import ObjectList from common import MemConfig from common.cores.arm import HPI @@ -194,7 +195,7 @@ def main(): parser.add_argument("--num-cores", type=int, default=1, help="Number of CPU cores") parser.add_argument("--mem-type", default="DDR3_1600_8x8", - choices=MemConfig.mem_names(), + choices=ObjectList.mem_list.get_names(), help = "type of memory to use") parser.add_argument("--mem-channels", type=int, default=2, help = "number of memory channels") |