Package MipsSim

Examples of MipsSim.Instruction$ControlBits


        */
        boolean needsStall = false;
        for (int i = 5; i<7; i++) {
            PipelineLatch otherLatch = SimUtils.getLatchAt(i);
            if (otherLatch != null) {
                Instruction otherInst = otherLatch.Inst;
                if ((otherInst.name == InstName.LD) && (this.Inst.src1 != null)
                        && (otherInst.dest.RegRef == this.Inst.src1.RegRef)) {
                    needsStall = true;
                    break;
                } else if ((otherInst.name == InstName.LD) && (this.Inst.src2 != null)
View Full Code Here

TOP

Related Classes of MipsSim.Instruction$ControlBits

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.