lesson 14

This commit is contained in:
Carlos Fenollosa
2014-10-20 23:13:57 +02:00
parent 9a8a1f6c76
commit d5d1a88cae
14 changed files with 141 additions and 1 deletions

View File

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