BIOS Programming

Displaying a TTY Character

This subroutine will take the ASCII character that is located in `al` and write it at the current cursor position to the page specified by `bh`.

ah = 0xE
al = ASCII character to write
bh = Page to display on. (Doesn't appear to work in qemu.)
bl = <nothing>

No returns