SConscript (8766:b0773af78423) SConscript (8770:81354d3836d4)
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

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

41Source('init.cc')
42Source('main.cc', main=True, skip_lib=True)
43Source('root.cc')
44Source('serialize.cc')
45Source('sim_events.cc')
46Source('sim_object.cc')
47Source('simulate.cc')
48Source('stat_control.cc')
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

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

41Source('init.cc')
42Source('main.cc', main=True, skip_lib=True)
43Source('root.cc')
44Source('serialize.cc')
45Source('sim_events.cc')
46Source('sim_object.cc')
47Source('simulate.cc')
48Source('stat_control.cc')
49Source('syscall_emul.cc')
49
50if env['TARGET_ISA'] != 'no':
51 SimObject('Process.py')
52 SimObject('System.py')
53 Source('faults.cc')
54 Source('process.cc')
55 Source('pseudo_inst.cc')
56 Source('system.cc')
57
58if env['FULL_SYSTEM']:
59 Source('arguments.cc')
60elif env['TARGET_ISA'] != 'no':
61 Source('tlb.cc')
62
50
51if env['TARGET_ISA'] != 'no':
52 SimObject('Process.py')
53 SimObject('System.py')
54 Source('faults.cc')
55 Source('process.cc')
56 Source('pseudo_inst.cc')
57 Source('system.cc')
58
59if env['FULL_SYSTEM']:
60 Source('arguments.cc')
61elif env['TARGET_ISA'] != 'no':
62 Source('tlb.cc')
63
63 Source('syscall_emul.cc')
64
65DebugFlag('Checkpoint')
66DebugFlag('Config')
67DebugFlag('Event')
68DebugFlag('Fault')
69DebugFlag('Flow')
70DebugFlag('IPI')
71DebugFlag('IPR')
72DebugFlag('Interrupt')
73DebugFlag('Loader')
74DebugFlag('Stack')
75DebugFlag('SyscallVerbose')
76DebugFlag('TimeSync')
77DebugFlag('TLB')
78DebugFlag('Thread')
79DebugFlag('Timer')
80DebugFlag('VtoPhys')
81DebugFlag('WorkItems')
64DebugFlag('Checkpoint')
65DebugFlag('Config')
66DebugFlag('Event')
67DebugFlag('Fault')
68DebugFlag('Flow')
69DebugFlag('IPI')
70DebugFlag('IPR')
71DebugFlag('Interrupt')
72DebugFlag('Loader')
73DebugFlag('Stack')
74DebugFlag('SyscallVerbose')
75DebugFlag('TimeSync')
76DebugFlag('TLB')
77DebugFlag('Thread')
78DebugFlag('Timer')
79DebugFlag('VtoPhys')
80DebugFlag('WorkItems')