Exemplo n.º 1
0
  public CodeInstruction getCodeInstruction(int address) {
    for (CodeInstruction codeInstruction : codeInstructions) {
      if (codeInstruction.getAddress() == address) {
        return codeInstruction;
      }
    }

    return null;
  }