Holy stuff. Alright, how would you rewrite this to remove the while in the while?
void rectangle(int x, int y, byte_t color, int x1, int y1) {
int xx,yy;
xx = 0;
yy = 0;
while(yy < y1) {
while(xx < x1) {
pixel(x+xx,y+yy,color);
xx = xx + 1;
}
xx = 0;
yy = yy + 1;
}
}