Deleted Added
sdiff udiff text old ( 12236:126ac9da6050 ) new ( 12291:2c0d8c31fc3d )
full compact
1// -*- mode:c++ -*-
2
3// Copyright (c) 2003-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

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

28//
29// Authors: Steve Reinhardt
30
31////////////////////////////////////////////////////////////////////
32//
33// Unimplemented instructions
34//
35
36def format FailUnimpl() {{
37 iop = InstObjParams(name, 'FailUnimplemented')
38 decode_block = BasicDecodeWithMnemonic.subst(iop)
39}};
40
41def format WarnUnimpl() {{
42 iop = InstObjParams(name, 'WarnUnimplemented')
43 decode_block = BasicDecodeWithMnemonic.subst(iop)
44}};
45