SConscript (10249:6bbb7ae309ac) SConscript (10259:ebb376f73dd2)
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

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

27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29# Authors: Nathan Binkert
30
31Import('*')
32
33SimObject('BaseTLB.py')
34SimObject('ClockedObject.py')
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

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

27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29# Authors: Nathan Binkert
30
31Import('*')
32
33SimObject('BaseTLB.py')
34SimObject('ClockedObject.py')
35SimObject('TickedObject.py')
35SimObject('Root.py')
36SimObject('ClockDomain.py')
37SimObject('VoltageDomain.py')
38SimObject('System.py')
39SimObject('DVFSHandler.py')
40
41Source('arguments.cc')
42Source('async.cc')
43Source('core.cc')
44Source('debug.cc')
45Source('eventq.cc')
46Source('global_event.cc')
47Source('init.cc')
48Source('main.cc', main=True, skip_lib=True)
49Source('root.cc')
50Source('serialize.cc')
51Source('drain.cc')
52Source('sim_events.cc')
53Source('sim_object.cc')
36SimObject('Root.py')
37SimObject('ClockDomain.py')
38SimObject('VoltageDomain.py')
39SimObject('System.py')
40SimObject('DVFSHandler.py')
41
42Source('arguments.cc')
43Source('async.cc')
44Source('core.cc')
45Source('debug.cc')
46Source('eventq.cc')
47Source('global_event.cc')
48Source('init.cc')
49Source('main.cc', main=True, skip_lib=True)
50Source('root.cc')
51Source('serialize.cc')
52Source('drain.cc')
53Source('sim_events.cc')
54Source('sim_object.cc')
55Source('ticked_object.cc')
54Source('simulate.cc')
55Source('stat_control.cc')
56Source('clock_domain.cc')
57Source('voltage_domain.cc')
58Source('system.cc')
59Source('dvfs_handler.cc')
60
61if env['TARGET_ISA'] != 'null':

--- 30 unchanged lines hidden ---
56Source('simulate.cc')
57Source('stat_control.cc')
58Source('clock_domain.cc')
59Source('voltage_domain.cc')
60Source('system.cc')
61Source('dvfs_handler.cc')
62
63if env['TARGET_ISA'] != 'null':

--- 30 unchanged lines hidden ---