Deleted Added
sdiff udiff text old ( 8853:0216ed80991b ) new ( 8914:8c3bd7bea667 )
full compact
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

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

35SimObject('MemObject.py')
36
37Source('bridge.cc')
38Source('bus.cc')
39Source('mem_object.cc')
40Source('mport.cc')
41Source('packet.cc')
42Source('port.cc')
43Source('tport.cc')
44Source('port_proxy.cc')
45Source('fs_translating_port_proxy.cc')
46Source('se_translating_port_proxy.cc')
47
48if env['TARGET_ISA'] != 'no':
49 SimObject('PhysicalMemory.py')
50 Source('dram.cc')
51 Source('page_table.cc')
52 Source('physical.cc')
53
54DebugFlag('Bus')
55DebugFlag('BusAddrRanges')
56DebugFlag('BusBridge')
57DebugFlag('LLSC')
58DebugFlag('MMU')
59DebugFlag('MemoryAccess')
60
61DebugFlag('ProtocolTrace')
62DebugFlag('RubyCache')
63DebugFlag('RubyCacheTrace')
64DebugFlag('RubyDma')
65DebugFlag('RubyGenerated')
66DebugFlag('RubyMemory')
67DebugFlag('RubyNetwork')
68DebugFlag('RubyPort')
69DebugFlag('RubyQueue')
70DebugFlag('RubySequencer')
71DebugFlag('RubySlicc')
72DebugFlag('RubySystem')
73DebugFlag('RubyTester')
74
75CompoundFlag('Ruby', [ 'RubyQueue', 'RubyNetwork', 'RubyTester',
76 'RubyGenerated', 'RubySlicc', 'RubySystem', 'RubyCache',
77 'RubyMemory', 'RubyDma', 'RubyPort', 'RubySequencer', 'RubyCacheTrace'])