Mercurial > lcfOS
view cos/hello/hello.c @ 129:9e350a7dde98
Changed architecture and updated the util
author | Windel Bouwman |
---|---|
date | Fri, 18 Jan 2013 12:52:11 +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; }