#include volatile short *fb = (short*)0xB8000; int boot() { char c = 'A'; for (int i = 0; i < 26; i++) fb[i] = (c + i) | 0xD << 8; return 0; }