alpha_generic.py (9826:014ff1fbff6d) alpha_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')
43import FSConfig
44from Caches import *
42m5.util.addToPath('../configs/')
43from common import FSConfig
44from common.Caches import *
45from base_config import *
46
47class LinuxAlphaSystemBuilder(object):
48 """Mix-in that implements create_system.
49
50 This mix-in is intended as a convenient way of adding an
51 Alpha-specific create_system method to a class deriving from one of
52 the generic base systems.

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

--- 48 unchanged lines hidden ---