4
Answers

emit loop in opcodes

Photo of J A

J A

16y
7k
1

is there such thing as a 'while' loop opcode.
what are the opcodes i use to emit this loop:

int i = 0;
while(true)
{
if(i == 3)
{
   break;
}

i++;
}

looking for something performance specific,

thanks in advance,

Jer,

Answers (4)

Next Recommended Forum