Home | History | Annotate | Download | only in docs

Lines Matching refs:video

32 /* @r{The video memory address.} */
33 #define VIDEO 0xB8000
40 /* @r{Point to the video memory.} */
41 static volatile unsigned char *video;
155 /* @r{Clear the screen and initialize VIDEO, XPOS and YPOS.} */
161 video = (unsigned char *) VIDEO;
164 *(video + i) = 0;
230 *(video + (xpos + ypos * COLUMNS) * 2) = c & 0xFF;
231 *(video + (xpos + ypos * COLUMNS) * 2 + 1) = ATTRIBUTE;