Deleted Added
sdiff udiff text old ( 2686:f0d591379ac3 ) new ( 2706:d88c27f75121 )
full compact
1// -*- mode:c++ -*-
2
3
4// Copyright (c) 2003-2005 The Regents of The University of Michigan
5// All rights reserved.
6//
7// Redistribution and use in source and binary forms, with or without
8// modification, are permitted provided that the following conditions are
9// met: redistributions of source code must retain the above copyright
10// notice, this list of conditions and the following disclaimer;
11// redistributions in binary form must reproduce the above copyright

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

21// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29//
30// Authors: Korey Sewell
31
32////////////////////////////////////////////////////////////////////
33//
34// Unimplemented instructions
35//
36
37output header {{
38 /**
39 * Static instruction class for unimplemented instructions that
40 * cause simulator termination. Note that these are recognized
41 * (legal) instructions that the simulator does not support; the
42 * 'Unknown' class is used for unrecognized/illegal instructions.
43 * This is a leaf class.
44 */

--- 101 unchanged lines hidden ---