SConscript (9384:877293183bdf) SConscript (10196:be0e1724eb39)
1# -*- mode:python -*-
2
3# Copyright (c) 2004-2005 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

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

56 SimObject('SparcISA.py')
57 SimObject('SparcNativeTrace.py')
58 SimObject('SparcSystem.py')
59 SimObject('SparcTLB.py')
60
61 DebugFlag('Sparc', "Generic SPARC ISA stuff")
62 DebugFlag('RegisterWindows', "Register window manipulation")
63
1# -*- mode:python -*-
2
3# Copyright (c) 2004-2005 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

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

56 SimObject('SparcISA.py')
57 SimObject('SparcNativeTrace.py')
58 SimObject('SparcSystem.py')
59 SimObject('SparcTLB.py')
60
61 DebugFlag('Sparc', "Generic SPARC ISA stuff")
62 DebugFlag('RegisterWindows', "Register window manipulation")
63
64 # Add in files generated by the ISA description.
65 isa_desc_files = env.ISADesc('isa/main.isa')
66 # Only non-header files need to be compiled.
67 for f in isa_desc_files:
68 if not f.path.endswith('.hh'):
69 Source(f)
64 env.ISADesc('isa/main.isa')