Package org.asturlinux.frade.currin.program.instruction

Examples of org.asturlinux.frade.currin.program.instruction.Instruction


  main.run(this, run_parameters);

        Logger logger = Logger.getLogger("Runtime");
  logger.info("Begins execution of function " + function_name);

  Instruction i;
        while (!_contextStack.isEmpty()) {

      if ( _contextStack.currentContext().getCurrentPc().hasNext()) {
    i =_contextStack.currentContext().getCurrentPc().getInstruction();
    _contextStack.currentContext().getCurrentPc().next();
    i.exec(this);
      } else {
    _contextStack.currentContext().popPc();
    if ( _contextStack.currentContext().hasNoMorePc() )
        _contextStack.popContext();
      }
View Full Code Here

TOP

Related Classes of org.asturlinux.frade.currin.program.instruction.Instruction

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.