13388Sgblack@eecs.umich.edu// Copyright (c) 2006 The Regents of The University of Michigan
23388Sgblack@eecs.umich.edu// All rights reserved.
33388Sgblack@eecs.umich.edu//
43388Sgblack@eecs.umich.edu// Redistribution and use in source and binary forms, with or without
53388Sgblack@eecs.umich.edu// modification, are permitted provided that the following conditions are
63388Sgblack@eecs.umich.edu// met: redistributions of source code must retain the above copyright
73388Sgblack@eecs.umich.edu// notice, this list of conditions and the following disclaimer;
83388Sgblack@eecs.umich.edu// redistributions in binary form must reproduce the above copyright
93388Sgblack@eecs.umich.edu// notice, this list of conditions and the following disclaimer in the
103388Sgblack@eecs.umich.edu// documentation and/or other materials provided with the distribution;
113388Sgblack@eecs.umich.edu// neither the name of the copyright holders nor the names of its
123388Sgblack@eecs.umich.edu// contributors may be used to endorse or promote products derived from
133388Sgblack@eecs.umich.edu// this software without specific prior written permission.
143388Sgblack@eecs.umich.edu//
153388Sgblack@eecs.umich.edu// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
163388Sgblack@eecs.umich.edu// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
173388Sgblack@eecs.umich.edu// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
183388Sgblack@eecs.umich.edu// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
193388Sgblack@eecs.umich.edu// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
203388Sgblack@eecs.umich.edu// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
213388Sgblack@eecs.umich.edu// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
223388Sgblack@eecs.umich.edu// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
233388Sgblack@eecs.umich.edu// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
243388Sgblack@eecs.umich.edu// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
253388Sgblack@eecs.umich.edu// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
263388Sgblack@eecs.umich.edu//
273388Sgblack@eecs.umich.edu// Authors: Gabe Black
283388Sgblack@eecs.umich.edu
297741Sgblack@eecs.umich.edu// Include the basic format
307741Sgblack@eecs.umich.edu// Templates from this format are used later
313388Sgblack@eecs.umich.edu##include "basic.isa"
322022SN/A
337741Sgblack@eecs.umich.edu// Include the noop format
343388Sgblack@eecs.umich.edu##include "nop.isa"
352516SN/A
367741Sgblack@eecs.umich.edu// Include the integerOp and integerOpCc format
373388Sgblack@eecs.umich.edu##include "integerop.isa"
382022SN/A
397741Sgblack@eecs.umich.edu// Include the memory formats
403388Sgblack@eecs.umich.edu##include "mem/mem.isa"
413272SN/A
427741Sgblack@eecs.umich.edu// Include the trap format
433388Sgblack@eecs.umich.edu##include "trap.isa"
442022SN/A
457741Sgblack@eecs.umich.edu// Include the unimplemented format
463388Sgblack@eecs.umich.edu##include "unimp.isa"
473272SN/A
487741Sgblack@eecs.umich.edu// Include the "unknown" format
493388Sgblack@eecs.umich.edu##include "unknown.isa"
502469SN/A
517741Sgblack@eecs.umich.edu// Include the priveleged mode format
523388Sgblack@eecs.umich.edu##include "priv.isa"
532469SN/A
547741Sgblack@eecs.umich.edu// Include the branch format
553388Sgblack@eecs.umich.edu##include "branch.isa"
562022SN/A
57