Deleted Added
sdiff udiff text old ( 4679:0b39fa8f5eb8 ) new ( 4997:e7380529bd2d )
full compact
1# -*- mode:python -*-
2
3# Copyright (c) 2005-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

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

91 Source('insts/microregop.cc')
92 Source('insts/static_inst.cc')
93 Source('intregfile.cc')
94 Source('miscregfile.cc')
95 Source('predecoder.cc')
96 Source('predecoder_tables.cc')
97 Source('regfile.cc')
98 Source('remote_gdb.cc')
99
100 if env['FULL_SYSTEM']:
101 # Full-system sources
102 pass
103 else:
104 Source('process.cc')
105
106 Source('linux/linux.cc')
107 Source('linux/process.cc')
108 Source('linux/syscalls.cc')
109
110 # Add in files generated by the ISA description.
111 isa_desc_files = env.ISADesc('isa/main.isa')
112 # Only non-header files need to be compiled.
113 for f in isa_desc_files:
114 if not f.path.endswith('.hh'):
115 Source(f)