Example:
Code:
/* Here is a custom loop */

loopy:
  if(x < 50)
  {
     /* Stuff goes here */

     x = x + 1;
     goto loopy;
  }