pc-simple-atomic.py (9826:014ff1fbff6d) pc-simple-atomic.py (9961:1991dd858e47)
1# Copyright (c) 2012 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 25 unchanged lines hidden (view full) ---

34# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35#
36# Authors: Andreas Sandberg
37
38from m5.objects import *
39from x86_generic import *
40
41root = LinuxX86FSSystemUniprocessor(mem_mode='atomic',
1# Copyright (c) 2012 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 25 unchanged lines hidden (view full) ---

34# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35#
36# Authors: Andreas Sandberg
37
38from m5.objects import *
39from x86_generic import *
40
41root = LinuxX86FSSystemUniprocessor(mem_mode='atomic',
42 mem_class=DDR3_1600_x64,
42 mem_class=SimpleMemory,
43 cpu_class=AtomicSimpleCPU).create_root()
43 cpu_class=AtomicSimpleCPU).create_root()