13 comments

[ 3.2 ms ] story [ 46.5 ms ] thread
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?

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.
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.
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.

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.)

Is anybody able to get the repo running? 'make qemu' simply shows a blank screen and exits. But the repo seems much farther along than the blog post.
The build defaults to debug, so `make qemu` also starts QEMU waiting for a debugger to attach. `make qemu BUILD=release` won't.