lesson 13, first kernel

This commit is contained in:
Carlos Fenollosa
2014-10-15 19:00:21 +02:00
parent 14f51e8246
commit 2f1378d7a3
7 changed files with 180 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
/* This will force us to create a kernel entry function */
void dummy_test_entrypoint() {
}
void main() {
char* video_memory = (char*) 0xb8000;
*video_memory = 'X';
}