formats.isa revision 2706
13900Ssaidi@eecs.umich.edu// -*- mode:c++ -*-
22632Sstever@eecs.umich.edu
32632Sstever@eecs.umich.edu// Copyright (c) 2003-2006 The Regents of The University of Michigan
42632Sstever@eecs.umich.edu// All rights reserved.
52632Sstever@eecs.umich.edu//
62632Sstever@eecs.umich.edu// Redistribution and use in source and binary forms, with or without
72632Sstever@eecs.umich.edu// modification, are permitted provided that the following conditions are
82632Sstever@eecs.umich.edu// met: redistributions of source code must retain the above copyright
92632Sstever@eecs.umich.edu// notice, this list of conditions and the following disclaimer;
102632Sstever@eecs.umich.edu// redistributions in binary form must reproduce the above copyright
112632Sstever@eecs.umich.edu// notice, this list of conditions and the following disclaimer in the
122632Sstever@eecs.umich.edu// documentation and/or other materials provided with the distribution;
132632Sstever@eecs.umich.edu// neither the name of the copyright holders nor the names of its
142632Sstever@eecs.umich.edu// contributors may be used to endorse or promote products derived from
152632Sstever@eecs.umich.edu// this software without specific prior written permission.
162632Sstever@eecs.umich.edu//
172632Sstever@eecs.umich.edu// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182632Sstever@eecs.umich.edu// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192632Sstever@eecs.umich.edu// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202632Sstever@eecs.umich.edu// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212632Sstever@eecs.umich.edu// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222632Sstever@eecs.umich.edu// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232632Sstever@eecs.umich.edu// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242632Sstever@eecs.umich.edu// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252632Sstever@eecs.umich.edu// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262632Sstever@eecs.umich.edu// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272632Sstever@eecs.umich.edu// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282632Sstever@eecs.umich.edu//
292632Sstever@eecs.umich.edu// Authors: Korey Sewell
302632Sstever@eecs.umich.edu
312022SN/A//Templates from this format are used later
322022SN/A//Include the basic format
332022SN/A##include "basic.isa"
342022SN/A
352022SN/A//Include the basic format
362469SN/A##include "noop.isa"
372469SN/A
382469SN/A//Include utility functions
392469SN/A##include "util.isa"
402516SN/A
412516SN/A//Include the control/cp0/cp1 formats
422944Sgblack@eecs.umich.edu##include "control.isa"
432482SN/A
443598Sgblack@eecs.umich.edu//Include the integer formats
453056Sgblack@eecs.umich.edu##include "int.isa"
462469SN/A
473056Sgblack@eecs.umich.edu//Include the floatOp format
483056Sgblack@eecs.umich.edu##include "fp.isa"
493056Sgblack@eecs.umich.edu
503598Sgblack@eecs.umich.edu//Include the mem format
512516SN/A##include "mem.isa"
523056Sgblack@eecs.umich.edu
533598Sgblack@eecs.umich.edu//Include the mem format
543056Sgblack@eecs.umich.edu##include "mt.isa"
553056Sgblack@eecs.umich.edu
563056Sgblack@eecs.umich.edu//Include the trap format
573056Sgblack@eecs.umich.edu##include "trap.isa"
583056Sgblack@eecs.umich.edu
593056Sgblack@eecs.umich.edu//Include the branch format
603056Sgblack@eecs.umich.edu##include "branch.isa"
613598Sgblack@eecs.umich.edu
623056Sgblack@eecs.umich.edu//Include the noop format
633056Sgblack@eecs.umich.edu##include "unimp.isa"
643598Sgblack@eecs.umich.edu
654004Sgblack@eecs.umich.edu//Include the noop format
664004Sgblack@eecs.umich.edu##include "unknown.isa"
673056Sgblack@eecs.umich.edu