12101SN/A// -*- mode:c++ -*-
22101SN/A
35268Sksewell@umich.edu// Copyright (c) 2007 MIPS Technologies, Inc.
45268Sksewell@umich.edu// All rights reserved.
55268Sksewell@umich.edu//
65268Sksewell@umich.edu// Redistribution and use in source and binary forms, with or without
75268Sksewell@umich.edu// modification, are permitted provided that the following conditions are
85268Sksewell@umich.edu// met: redistributions of source code must retain the above copyright
95268Sksewell@umich.edu// notice, this list of conditions and the following disclaimer;
105268Sksewell@umich.edu// redistributions in binary form must reproduce the above copyright
115268Sksewell@umich.edu// notice, this list of conditions and the following disclaimer in the
125268Sksewell@umich.edu// documentation and/or other materials provided with the distribution;
135268Sksewell@umich.edu// neither the name of the copyright holders nor the names of its
145268Sksewell@umich.edu// contributors may be used to endorse or promote products derived from
155268Sksewell@umich.edu// this software without specific prior written permission.
165268Sksewell@umich.edu//
175268Sksewell@umich.edu// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
185268Sksewell@umich.edu// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
195268Sksewell@umich.edu// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
205268Sksewell@umich.edu// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
215268Sksewell@umich.edu// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
225268Sksewell@umich.edu// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
235268Sksewell@umich.edu// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
245268Sksewell@umich.edu// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
255268Sksewell@umich.edu// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
265268Sksewell@umich.edu// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
275268Sksewell@umich.edu// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
285268Sksewell@umich.edu//
295268Sksewell@umich.edu// Authors: Korey Sewell
302706Sksewell@umich.edu
312100SN/A//Templates from this format are used later
322101SN/A//Include the basic format
332504SN/A##include "basic.isa"
342100SN/A
352022SN/A//Include the basic format
362504SN/A##include "noop.isa"
372101SN/A
382504SN/A//Include utility functions
392504SN/A##include "util.isa"
402022SN/A
412686Sksewell@umich.edu//Include the control/cp0/cp1 formats
422686Sksewell@umich.edu##include "control.isa"
432239SN/A
442135SN/A//Include the integer formats
452504SN/A##include "int.isa"
462028SN/A
474661Sksewell@umich.edu//Include the DSP integer format
484661Sksewell@umich.edu##include "dsp.isa"
494661Sksewell@umich.edu
502028SN/A//Include the floatOp format
512504SN/A##include "fp.isa"
522022SN/A
532022SN/A//Include the mem format
542504SN/A##include "mem.isa"
552022SN/A
562686Sksewell@umich.edu//Include the mem format
572686Sksewell@umich.edu##include "mt.isa"
582686Sksewell@umich.edu
592022SN/A//Include the trap format
602504SN/A##include "trap.isa"
612022SN/A
622022SN/A//Include the branch format
632504SN/A##include "branch.isa"
642022SN/A
652022SN/A//Include the noop format
662504SN/A##include "unimp.isa"
672083SN/A
682083SN/A//Include the noop format
692504SN/A##include "unknown.isa"
70