// DotLineH(x1,y,x2,color) function dLineH(x1,y,x2,c){ var d=1; if(x1>x2){ d=-1; } while(x1!=x2){ if(x1&1){ uart(128,8,1,x1,y,x1,y,c); } x1=x1+d; } } // Sample Code uart("\nPC CLEAR 00\n"); dLineH(0,0,79,2);