Hacker News new | ask | show | jobs
by pki 3939 days ago
there's no comment section there so i'd figure i'd ask here: what is that font that it outputs? is that part of BIOS or something? or part of boot loader or PXE server?

i assumed asm was the lowest level, is there some builtin font by default that can't be changed or something?

4 comments

The default video bios mode is used as-is here, https://en.wikipedia.org/wiki/Video_BIOS

There is no terminal emulator here. This hello world text is written directly to video memory -- and yes, there is a character rom, so placing a string of words in memory OR'd with bits set for video attributes (the #defines there) make it color.

Furthermore, see an example of setting the mode explicitly from PC-DOS: https://github.com/johannesl/EditANSi/blob/master/ea.asm#L23 and http://fleder44.net/312/notes/18Graphics/index.html
More detailed article on the text mode:

https://en.wikipedia.org/wiki/VGA-compatible_text_mode

(Many, including me, still consider the original IBM VGA text font to be one of the most well-designed and readable for displaying text.)

It is indeed the default BIOS font. You usually get it when switching to a TTY on Linux, as well.
But of course nowadays most distributions use KMS and put the consoles in a graphics mode on which the virtual console is emulated.
Its part of the hardware (emulated by qemu). A VGA card (or any other text mode capable video adapter) will use either a portion of ROM or some part of video memory to hold the font from where its accessed simultaneously to the beam drawing the CRT screen. (Hercules, CGA, EGA, VGA all did this).

In contrast to this, many Unix workstations never implemented such a thing and went directly to graphics framebuffers (SUN cgX framebuffers for the ... Sbus??). For that, of course you have to implement the font rendering in "bios" , or in the case of the sun machine in the OpenFirmware. Slowly.)

I haven't read through the tutorial, but I would assume that the programmer does not specify the fonts being used, but rather outputs bytes to stdout. It's the terminal emulator that's running the program that is responsible for displaying those bytes, so that's where things like font would be set.