mt.isa (2741:a73a50764b86) mt.isa (3951:727778d649ae)
1// -*- mode:c++ -*-
2
3// Copyright (c) 2006 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

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

69 //Call into the trap handler with the appropriate fault
70 return No_Fault;
71 }
72}};
73
74// Primary format for integer operate instructions:
75def format MipsMT() {{
76 code = 'panic(\"Mips MT Is Currently Unimplemented.\");\n'
1// -*- mode:c++ -*-
2
3// Copyright (c) 2006 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

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

69 //Call into the trap handler with the appropriate fault
70 return No_Fault;
71 }
72}};
73
74// Primary format for integer operate instructions:
75def format MipsMT() {{
76 code = 'panic(\"Mips MT Is Currently Unimplemented.\");\n'
77 iop = InstObjParams(name, Name, 'MT', CodeBlock(code))
77 iop = InstObjParams(name, Name, 'MT', code)
78 header_output = BasicDeclare.subst(iop)
79 decoder_output = BasicConstructor.subst(iop)
80 decode_block = BasicDecode.subst(iop)
81 exec_output = BasicExecute.subst(iop)
82}};
78 header_output = BasicDeclare.subst(iop)
79 decoder_output = BasicConstructor.subst(iop)
80 decode_block = BasicDecode.subst(iop)
81 exec_output = BasicExecute.subst(iop)
82}};