m5ops.isa (12159:c7e7ae57b977) m5ops.isa (12595:b5a51007feac)
1//
2// Copyright (c) 2010 ARM Limited
3// All rights reserved
4//
5// The license below extends only to copyright in the software and shall
6// not be construed as granting a license to any other intellectual
7// property including but not limited to intellectual property relating
8// to a hardware implementation of the functionality of the software

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

63 case M5OP_WRITE_FILE: return new M5writefile(machInst);
64 case M5OP_READ_FILE: return new M5readfile(machInst);
65 case M5OP_DEBUG_BREAK: return new M5break(machInst);
66 case M5OP_SWITCH_CPU: return new M5switchcpu(machInst);
67 case M5OP_ADD_SYMBOL: return new M5addsymbol(machInst);
68 case M5OP_PANIC: return new M5panic(machInst);
69 case M5OP_WORK_BEGIN: return new M5workbegin(machInst);
70 case M5OP_WORK_END: return new M5workend(machInst);
1//
2// Copyright (c) 2010 ARM Limited
3// All rights reserved
4//
5// The license below extends only to copyright in the software and shall
6// not be construed as granting a license to any other intellectual
7// property including but not limited to intellectual property relating
8// to a hardware implementation of the functionality of the software

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

63 case M5OP_WRITE_FILE: return new M5writefile(machInst);
64 case M5OP_READ_FILE: return new M5readfile(machInst);
65 case M5OP_DEBUG_BREAK: return new M5break(machInst);
66 case M5OP_SWITCH_CPU: return new M5switchcpu(machInst);
67 case M5OP_ADD_SYMBOL: return new M5addsymbol(machInst);
68 case M5OP_PANIC: return new M5panic(machInst);
69 case M5OP_WORK_BEGIN: return new M5workbegin(machInst);
70 case M5OP_WORK_END: return new M5workend(machInst);
71 default: return new Unknown(machInst);
71 }
72 }
73 '''
74}};
72 }
73 }
74 '''
75}};