Mercurial > lcfOS
view cos/hello/hello.c @ 31:88590c42320f
Changed interrupt handler
author | windel |
---|---|
date | Tue, 10 Jan 2012 20:40:35 +0100 |
parents | d3c4bf3720a3 |
children | 3a6a9b929db0 |
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; }