6bf71f96f3
Now, must create g++ compilable code ... arch/mips/isa/decoder.isa: missing a '}' ... edited a few instruction decodings ... arch/mips/isa/formats.isa: rearranged #include arch/mips/isa/formats/branch.isa: add Branch Likely and Unconditional format arch/mips/isa/formats/int.isa: move OperateNopCheckDecode template to another file ... arch/mips/isa/formats/noop.isa: change Alpha to Mips in noop.isa --HG-- extra : convert_revision : 4bf955fa6dffbbc99fb95fee7878f691e3df5424
33 lines
835 B
C++
33 lines
835 B
C++
// -*- mode:c++ -*-
|
|
|
|
//Templates from this format are used later
|
|
//Include the basic format
|
|
##include "m5/arch/mips/isa/formats/basic.isa"
|
|
|
|
//Include the basic format
|
|
##include "m5/arch/mips/isa/formats/noop.isa"
|
|
|
|
//Include utility formats/functions
|
|
##include "m5/arch/mips/isa/formats/util.isa"
|
|
|
|
//Include the integerOp and integerOpCc format
|
|
##include "m5/arch/mips/isa/formats/int.isa"
|
|
|
|
//Include the floatOp format
|
|
##include "m5/arch/mips/isa/formats/fp.isa"
|
|
|
|
//Include the mem format
|
|
##include "m5/arch/mips/isa/formats/mem.isa"
|
|
|
|
//Include the trap format
|
|
##include "m5/arch/mips/isa/formats/trap.isa"
|
|
|
|
//Include the branch format
|
|
##include "m5/arch/mips/isa/formats/branch.isa"
|
|
|
|
//Include the noop format
|
|
##include "m5/arch/mips/isa/formats/unimp.isa"
|
|
|
|
//Include the noop format
|
|
##include "m5/arch/mips/isa/formats/unknown.isa"
|
|
|