Quote:
UNHANDLED INT 10 FUNCTION 0007 WITHIN EMULATION
Interpreting this message needs a bit of x86 assembly and low-level BIOS programming knowledge. Basically software interrupt no. 16 (INT 10H) is the entry point of all VGA/video BIOS functions. This function accepts arguments via x86 register set.
In our case 0007 is a 16 bit hexadecimal value, and it's put into the 16 bit AX register, before the call, to serve as argument for INT 10H. The AX register can be accessed as two 8 bit registers, as AH for the upper 8 bits, and AL for the lower 8 bits. So, 0007 means 00H for AH, and 07H for AL.
AH specifies the
sub-function inside INT 10H to call. Sub-function 00H is Set Video Mode. AL contains which video mode to set:
07H is Text Mode 80x25. This sub-function has no return values, so not handling it doesn't affect code executed later.
So, basically the above message means, the VGA BIOS running in emulation tries to set the display to 80x25 text mode (which is the default on any PC), and it is unable to do so (due to the nature of the emulation i guess), but this is really harmless, since OF will set a proper video mode later in the startup sequence.
Hope this helps understanding what that message really means, and why is it harmless.