// Rect(x1,y1,x2,y2,color) function rect(x1,y1,x2,y2,c){ uart(128,8,1,x1,y1,x2,y1,c); uart(128,8,1,x2,y1,x2,y2,c); uart(128,8,1,x2,y2,x1,y2,c); uart(128,8,1,x1,y2,x1,y1,c); } // Sample Code uart("\nPC CLEAR 00\n"); rect(4,2,52,23,3);