Home
last modified time | relevance | path

Searched refs:crt (Results 1 – 1 of 1) sorted by relevance

/xv6-public/
H A Dconsole.c129 static ushort *crt = (ushort*)P2V(0xb8000); // CGA memory variable
147 crt[pos++] = (c&0xff) | 0x0700; // black on white in cgaputc()
153 memmove(crt, crt+80, sizeof(crt[0])*23*80); in cgaputc()
155 memset(crt+pos, 0, sizeof(crt[0])*(24*80 - pos)); in cgaputc()
162 crt[pos] = ' ' | 0x0700; in cgaputc()