1
0

kernel.c 212 B

12345678
  1. /* This will force us to create a kernel entry function instead of jumping to kernel.c:0x00 */
  2. void dummy_test_entrypoint() {
  3. }
  4. void main() {
  5. char* video_memory = (char*) 0xb8000;
  6. *video_memory = 'X';
  7. }