diff --git a/src/machine-vuln5.c b/src/machine-vuln5.c index 4b0059ec1c8fb1d3f6ea07e5e80c0ef8afad0046..6c9f46029e4244ca5c7ef5f6507692f829135ee7 100644 --- a/src/machine-vuln5.c +++ b/src/machine-vuln5.c @@ -396,7 +396,7 @@ int execute(const unsigned int progLength, const int cycles, int32_t * res){ unsigned int ra = 0; int32_t offs = 0; - if (parseReg(toks[1],&ra) == 0 && + /*if (parseReg(toks[1],&ra) == 0 && parseOffset(toks[2],&offs) == 0){ if (regs[ra] == 0){ pc = pc + offs; @@ -404,13 +404,13 @@ int execute(const unsigned int progLength, const int cycles, int32_t * res){ pc = pc + 1; } count++; - continue; /* avoid default increment the pc below */ + continue; /* avoid default increment the pc below } else { - return -1; + return -1; } }else{ debug_printf("Unrecognised opcode: %s\n",toks[0]); - return -1; + return -1; */ } count++; pc = pc + 1;