mirror of
https://github.com/cfenollosa/os-tutorial.git
synced 2025-12-17 12:24:37 +03:00
lesson 14
This commit is contained in:
8
14-checkpoint/kernel/kernel.c
Normal file
8
14-checkpoint/kernel/kernel.c
Normal 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';
|
||||
}
|
||||
Reference in New Issue
Block a user