SConscript (9384:877293183bdf) SConscript (10196:be0e1724eb39)
1# -*- mode:python -*-
2
3# Copyright (c) 2009 The University of Edinburgh
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

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

53 Source('vtophys.cc')
54
55 SimObject('PowerInterrupts.py')
56 SimObject('PowerISA.py')
57 SimObject('PowerTLB.py')
58
59 DebugFlag('Power')
60
1# -*- mode:python -*-
2
3# Copyright (c) 2009 The University of Edinburgh
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

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

53 Source('vtophys.cc')
54
55 SimObject('PowerInterrupts.py')
56 SimObject('PowerISA.py')
57 SimObject('PowerTLB.py')
58
59 DebugFlag('Power')
60
61 # Add in files generated by the ISA description.
62 isa_desc_files = env.ISADesc('isa/main.isa')
63
64 # Only non-header files need to be compiled.
65 for f in isa_desc_files:
66 if not f.path.endswith('.hh'):
67 Source(f)
68
61 env.ISADesc('isa/main.isa')