CHAPTER 4. ENTERING 32-BIT PROTECTED MODE 31
into the CPU, before setting a single bit in a special CPU control register to make the
actual switch.
This process would be easy enough if we didn’t have to define the GDT in assembly
language, but sadly this low-level switch-over is unavoidable if we later wish to load a
kernel that has been compiled from a higher-level language such as C, which usually will
be compiled to 32-bit instructions rather than the less-efficient 16-bit instructions.
Oh, there is one shocker that I nearly forgot to mention: we can no longer use
BIOS once switched into 32-bit protected mode. If you thought making BIOS calls was
low-level. This is like one step backwards, two steps forwards.
4.1 Adapting to Life Without BIOS
It is true: in our quest to make full use of the CPU, we must abandon all of those helpful
routines provided by BIOS. As we will see when we look in more detail at the 32-bit
protected mode switch-over, BIOS routines, having been coded to work only in 16-bit
real mode, are no longer valid in 32-bit protected mode; indeed, attempting to use them
would likely crash the machine.
So what this means is that a 32-bit operating system must provide its own drivers for
all hardware of the machine (e.g. the keybaord, screen, disk drives, mouse, etc). Actually,
it is possible for a 32-bit protected mode operating system to switch temporarily back
into 16-bit mode whereupon it may utilise BIOS, but this teachnique can be more trouble
than it is worth, especially in terms of performance.
The first problem we will encounted in switching to protected mode is knowing how
to print a message on the screen, so we can see what is happening. Previously we
have asked BIOS to print an ASCII character on the screen, but how did that result in
the appropriate pixels being highlighted at the appropriate position of our computer’s
screen? For now, it suffices to know that the display device can be configured into one
of several resolutions in one of two modes,text modeandgraphics mode; and that what
is displayed on the screen is a visual representation of a specific range of memory. So,
in order to manipulate the screen, we must manipulate the specific memory range that
it is using in its current mode. The display device is an example of memory-mapped
hardware because it works in this way.
When most computers boot, despite that they may infact have more advanced graph-
ics hardware, they begin in a simple Video Graphics Array (VGA) colour text mode with
dimmensions 80x25 characters. In text mode, the programmer does not need to render
individual pixels to describe specific characters, since a simple font is already defined
in the internal memory of the VGA display device. Instead, each character cell of the
screen is represented by two bytes in memory: the first byte is the ASCII code of the
character to be displayed, and the second byte encodes the characters attributes, such
as the foreground and background colour and if the character should be blinking.
So, if we’d like to display a character on the screen, then we need to set its ASCII
code and attributes at the correct memory address for the current VGA mode, which
is usually at address0xb8000. If we slightly modify our original (16-bit real mode)
printstring routine so that it no longer uses the BIOS routine, we can create a 32-bit
protected mode routine that writes directly to video memory, as in Figure 4.1.
Note that, although the screen is displayed as columns and rows, the video memory
is simply sequential. For example, the address of the column 5 on row 3 can be calculated
as follows:0xb8000 + 2 (row 80 + col)