__asm__(".code16gcc\n"); #include "../output/vga_character.h" char foo[] = "hello how are you"; void _start() { vga_graphics_clear(); vga_graphics_write_with_attr('a', 1); vga_graphics_write_with_attr('/', 2); vga_graphics_write_with_attr('b', 3); vga_graphics_write_str(foo); vga_graphics_write(':'); vga_graphics_write(' '); vga_graphics_byte_hex(0x40); while(1) { } }