You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
259 B

// Called by boot.asm
void main() {
// Create pointer to a char and point to the first text cell of VGA
char* video_memory = (char*) 0xb8000;
// Write the char X to the video memory to display it on the top-left of screen
*video_memory = 'X';
}