unknown.isa (7720:65d338a8dba4) unknown.isa (10196:be0e1724eb39)
1// Copyright (c) 2007 The Hewlett-Packard Development Company
2// All rights reserved.
3//
4// The license below extends only to copyright in the software and shall
5// not be construed as granting a license to any other intellectual
6// property including but not limited to intellectual property relating
7// to a hardware implementation of the functionality of the software
8// licensed hereunder. You may use the software subject to the license

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

69 std::string Unknown::generateDisassembly(Addr pc,
70 const SymbolTable *symtab) const
71 {
72 return "Unknown instruction";
73 }
74}};
75
76output exec {{
1// Copyright (c) 2007 The Hewlett-Packard Development Company
2// All rights reserved.
3//
4// The license below extends only to copyright in the software and shall
5// not be construed as granting a license to any other intellectual
6// property including but not limited to intellectual property relating
7// to a hardware implementation of the functionality of the software
8// licensed hereunder. You may use the software subject to the license

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

69 std::string Unknown::generateDisassembly(Addr pc,
70 const SymbolTable *symtab) const
71 {
72 return "Unknown instruction";
73 }
74}};
75
76output exec {{
77 Fault Unknown::execute(%(CPU_exec_context)s *xc,
77 Fault Unknown::execute(CPU_EXEC_CONTEXT *xc,
78 Trace::InstRecord *traceData) const
79 {
80 return new InvalidOpcode();
81 }
82}};
83
84def format Unknown() {{
85 decode_block = 'return new Unknown(machInst);\n'
86}};
78 Trace::InstRecord *traceData) const
79 {
80 return new InvalidOpcode();
81 }
82}};
83
84def format Unknown() {{
85 decode_block = 'return new Unknown(machInst);\n'
86}};