Hello, again, hello!!
Still transporting from C code to Asm
Sorry, but cannot find in TEACH YOURSELF C IN 21 DAYS an explanation to this code:
Question: Is Second For Loop NESTED in First For Loop???
(In Above "Orignal" code semicolon are missing ";")
Thank in advance!
-----
Still transporting from C code to Asm
Sorry, but cannot find in TEACH YOURSELF C IN 21 DAYS an explanation to this code:
Code:
void ClearScreen()
{
WORD xpos,ypos;
for (ypos=0;ypos<Yimage;ypos+=8)
for (xpos=0;xpos<Ximage;xpos+=8)
{
ColorPixel(xpos,ypos,COLOR_BLACK)
}
}
(In Above "Orignal" code semicolon are missing ";")
Thank in advance!
-----