endloop
None.
Specifies the end of a loop control block that was started by the loop instruction.
There must be at least one instruction between loop and endloop.
for ( int i = 0, aL = src.init ; i < src.count+1 ; i++, aL += src.step )
{
...
}
defi i0, 10, 0, 1
loop i0
add r0, r0, c0[ aL ] // Add the total of c0, c1, ... , c9 to r0
endloop
CONFIDENTIAL