System32 Function 39 (27h) - Write number to alternate output.

Description
Let's you output a hex number to a screen other that the terminal screen. You should not be using this to output to the terminal screen for compatibility reasons, but you could use it to output to the debug screen for example.
Input

AL

39d (27h)

AH

Bytes (1 prints 1 byte, 4 prints 4 bytes)

DL

Screen number

EBX

Dword to write
Output

None

None
Errorcodes

None

None
Notes
*See Function 05 for more info.
Screen numbers currently available are:
0 = Terminal Screen
1 = Debug Screen
2 = Bootup Screen
3 = Modload Screen
4 = Crash Screen
Development Status
Complete

Back