summaryrefslogtreecommitdiff
path: root/tests/configs/simple-atomic.py
diff options
context:
space:
mode:
authorKevin Lim <ktlim@umich.edu>2007-04-22 14:39:39 -0400
committerKevin Lim <ktlim@umich.edu>2007-04-22 14:39:39 -0400
commitd1f9414e111b4b5e6d0f60ca64a415a47765e9e0 (patch)
tree1bb6a06cffe906558ebf86873236be9e643d88a2 /tests/configs/simple-atomic.py
parent25e92383c839f6d69f933f614fd3f9acef907075 (diff)
downloadgem5-d1f9414e111b4b5e6d0f60ca64a415a47765e9e0.tar.xz
Update configs to set the CPU clock properly.
--HG-- extra : convert_revision : 62fec666f987e9a9a441e319458908483cd2c5ff
Diffstat (limited to 'tests/configs/simple-atomic.py')
-rw-r--r--tests/configs/simple-atomic.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/configs/simple-atomic.py b/tests/configs/simple-atomic.py
index a8a876994..cc303886b 100644
--- a/tests/configs/simple-atomic.py
+++ b/tests/configs/simple-atomic.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2006 The Regents of The University of Michigan
+# Copyright (c) 2006-2007 The Regents of The University of Michigan
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@@ -34,5 +34,6 @@ system = System(cpu = AtomicSimpleCPU(cpu_id=0),
membus = Bus())
system.physmem.port = system.membus.port
system.cpu.connectMemPorts(system.membus)
+system.cpu.clock = '2GHz'
root = Root(system = system)