You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
E
You forgot to add braces to the for-loop code block:
CODEÂÂÂÂfor(i = 0; i < 256 * 192; i++)
ÂÂÂÂ{
ÂÂÂÂÂÂÂÂr=0;
ÂÂÂÂÂÂÂÂg=(i%257/2);
ÂÂÂÂÂÂÂÂb=(i%255/2);
ÂÂÂÂÂÂÂÂVRAM_A[i] = RGB15(r,g,b);
ÂÂÂÂ}