Deleted Added
sdiff udiff text old ( 9057:f5ee56466b91 ) new ( 9384:877293183bdf )
full compact
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

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

48 Source('solaris/solaris.cc')
49 Source('system.cc')
50 Source('tlb.cc')
51 Source('ua2005.cc')
52 Source('utility.cc')
53 Source('vtophys.cc')
54
55 SimObject('SparcInterrupts.py')
56 SimObject('SparcNativeTrace.py')
57 SimObject('SparcSystem.py')
58 SimObject('SparcTLB.py')
59
60 DebugFlag('Sparc', "Generic SPARC ISA stuff")
61 DebugFlag('RegisterWindows', "Register window manipulation")
62
63 # Add in files generated by the ISA description.
64 isa_desc_files = env.ISADesc('isa/main.isa')
65 # Only non-header files need to be compiled.
66 for f in isa_desc_files:
67 if not f.path.endswith('.hh'):
68 Source(f)