14a15,17
> // Copyright (c) 2007-2008 The Florida State University
> // All rights reserved.
> //
38a42
> // Stephen Hines
39a44,49
>
> ////////////////////////////////////////////////////////////////////
> //
> // Internal fault handling
> //
>
44a55,78
>
> ////////////////////////////////////////////////////////////////////
> //
> // Unknown instruction handling
> //
>
> def format Unknown() {{
> decode_block = 'return new Unknown(machInst);\n'
> }};
>
> ////////////////////////////////////////////////////////////////////
> //
> // Unimplemented instructions
> //
>
> def format FailUnimpl() {{
> iop = InstObjParams(name, 'FailUnimplemented')
> decode_block = BasicDecodeWithMnemonic.subst(iop)
> }};
>
> def format WarnUnimpl() {{
> iop = InstObjParams(name, 'WarnUnimplemented')
> decode_block = BasicDecodeWithMnemonic.subst(iop)
> }};