// Pega o comando na posição definida pelo numero após o @
Instruction dest = getInstructionAt(getCurrentInstruction().getValue().toInteger());
// Incrementa o valor em 1
Value value = ALU.sum(dest.getValue(), ALU.decimal(1));
// Substitui pelo novo valor
dest.replaceValue(value, this.getMainPanel().getDataTypeInput().getDataType());
} else if (RegexMatcher.matches(regex1, getCurrentInstruction().getLineCommand())) {
// Incrementa o valor em 1
Value value = ALU.sum(getCurrentInstruction().getRegister().getValue(), ALU.decimal(1));
// Atribui o novo valor ao registrador especificado
getCurrentInstruction().getRegister().setValue(value);