SConscript (8931:7a1dfb191e3f) SConscript (8981:6f4ec692716f)
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('Bridge.py')
34SimObject('Bus.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('Bridge.py')
34SimObject('Bus.py')
35SimObject('CommMonitor.py')
35SimObject('MemObject.py')
36
37Source('bridge.cc')
38Source('bus.cc')
36SimObject('MemObject.py')
37
38Source('bridge.cc')
39Source('bus.cc')
40Source('comm_monitor.cc')
39Source('mem_object.cc')
40Source('mport.cc')
41Source('packet.cc')
42Source('port.cc')
43Source('packet_queue.cc')
44Source('tport.cc')
45Source('port_proxy.cc')
46Source('fs_translating_port_proxy.cc')

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

52 Source('abstract_mem.cc')
53 Source('simple_mem.cc')
54 Source('page_table.cc')
55 Source('physical.cc')
56
57DebugFlag('Bus')
58DebugFlag('BusAddrRanges')
59DebugFlag('BusBridge')
41Source('mem_object.cc')
42Source('mport.cc')
43Source('packet.cc')
44Source('port.cc')
45Source('packet_queue.cc')
46Source('tport.cc')
47Source('port_proxy.cc')
48Source('fs_translating_port_proxy.cc')

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

54 Source('abstract_mem.cc')
55 Source('simple_mem.cc')
56 Source('page_table.cc')
57 Source('physical.cc')
58
59DebugFlag('Bus')
60DebugFlag('BusAddrRanges')
61DebugFlag('BusBridge')
62DebugFlag('CommMonitor')
60DebugFlag('LLSC')
61DebugFlag('MMU')
62DebugFlag('MemoryAccess')
63DebugFlag('PacketQueue')
64
65DebugFlag('ProtocolTrace')
66DebugFlag('RubyCache')
67DebugFlag('RubyCacheTrace')

--- 14 unchanged lines hidden ---
63DebugFlag('LLSC')
64DebugFlag('MMU')
65DebugFlag('MemoryAccess')
66DebugFlag('PacketQueue')
67
68DebugFlag('ProtocolTrace')
69DebugFlag('RubyCache')
70DebugFlag('RubyCacheTrace')

--- 14 unchanged lines hidden ---