x86_generic.py (10884:c60acdbdd6ad) x86_generic.py (11682:612f75cf36a0)
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 abc import ABCMeta, abstractmethod
39import m5
40from m5.objects import *
41from m5.proxy import *
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 abc import ABCMeta, abstractmethod
39import m5
40from m5.objects import *
41from m5.proxy import *
42m5.util.addToPath('../configs/common')
43from Benchmarks import SysConfig
44import FSConfig
45from Caches import *
42m5.util.addToPath('../configs/')
43from common.Benchmarks import SysConfig
44from common import FSConfig
45from common.Caches import *
46from base_config import *
47
48class LinuxX86SystemBuilder(object):
49 """Mix-in that implements create_system.
50
51 This mix-in is intended as a convenient way of adding an
52 X86-specific create_system method to a class deriving from one of
53 the generic base systems.

--- 62 unchanged lines hidden ---
46from base_config import *
47
48class LinuxX86SystemBuilder(object):
49 """Mix-in that implements create_system.
50
51 This mix-in is intended as a convenient way of adding an
52 X86-specific create_system method to a class deriving from one of
53 the generic base systems.

--- 62 unchanged lines hidden ---