SConscript (4997:e7380529bd2d) | SConscript (5192:582e583f8e7e) |
---|---|
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 --- 29 unchanged lines hidden (view full) --- 38 Source('regfile/int_regfile.cc') 39 Source('regfile/misc_regfile.cc') 40 Source('regfile/regfile.cc') 41 Source('tlb.cc') 42 Source('utility.cc') 43 44 SimObject('MipsTLB.py') 45 | 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 --- 29 unchanged lines hidden (view full) --- 38 Source('regfile/int_regfile.cc') 39 Source('regfile/misc_regfile.cc') 40 Source('regfile/regfile.cc') 41 Source('tlb.cc') 42 Source('utility.cc') 43 44 SimObject('MipsTLB.py') 45 |
46 TraceFlag('MipsPRA') 47 |
|
46 if env['FULL_SYSTEM']: 47 #Insert Full-System Files Here 48 pass 49 else: 50 Source('process.cc') 51 52 Source('linux/linux.cc') 53 Source('linux/process.cc') 54 55 # Add in files generated by the ISA description. 56 isa_desc_files = env.ISADesc('isa/main.isa') 57 # Only non-header files need to be compiled. 58 for f in isa_desc_files: 59 if not f.path.endswith('.hh'): 60 Source(f) | 48 if env['FULL_SYSTEM']: 49 #Insert Full-System Files Here 50 pass 51 else: 52 Source('process.cc') 53 54 Source('linux/linux.cc') 55 Source('linux/process.cc') 56 57 # Add in files generated by the ISA description. 58 isa_desc_files = env.ISADesc('isa/main.isa') 59 # Only non-header files need to be compiled. 60 for f in isa_desc_files: 61 if not f.path.endswith('.hh'): 62 Source(f) |