view cos/hello/hello.c @ 39:600f48b74799

Move ide
author windel
date Fri, 03 Feb 2012 18:40:43 +0100
parents 3a6a9b929db0
children
line wrap: on
line source

/* Uber simple program that prints directly to video memory */

int main()
{

   unsigned char * const screen = (unsigned char*)0xB8000;
   screen[0] = 'H';
   screen[2] = 'o';
   screen[4] = 'i';
   while (1==1)
   {
   }
   return 0;
}