alpha_generic.py (9728:7daeab1685e9) alpha_generic.py (9826:014ff1fbff6d)
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

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

54 def __init__(self):
55 """
56 Arguments:
57 machine_type -- String describing the platform to simulate
58 """
59 pass
60
61 def create_system(self):
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

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

54 def __init__(self):
55 """
56 Arguments:
57 machine_type -- String describing the platform to simulate
58 """
59 pass
60
61 def create_system(self):
62 system = FSConfig.makeLinuxAlphaSystem(self.mem_mode, DDR3_1600_x64)
62 system = FSConfig.makeLinuxAlphaSystem(self.mem_mode)
63 self.init_system(system)
64 return system
65
66class LinuxAlphaFSSystem(LinuxAlphaSystemBuilder,
67 BaseFSSystem):
68 """Basic Alpha full system builder."""
69
70 def __init__(self, **kwargs):

--- 30 unchanged lines hidden ---
63 self.init_system(system)
64 return system
65
66class LinuxAlphaFSSystem(LinuxAlphaSystemBuilder,
67 BaseFSSystem):
68 """Basic Alpha full system builder."""
69
70 def __init__(self, **kwargs):

--- 30 unchanged lines hidden ---