Please tell me how to implement this task: determining the configuration of a computer using C ++, determine the parameters of the specified disk (DOS 32h). Tell the book (website) where to gain wisdom?
|
1 answer
Interrupt List from Ralf Brown will help you. This is one of the most fundamental materials on this topic. The only thing in English.
Regarding INT 32h, it is not related to C ++, although it is possible to trigger an interrupt manually (via the built-in assembler). Then the call will look something like this:
... __asm { mov ax, 12 mov bx, 4 int 0x32 } ... As an option - you can use something in the spirit of calling biosdisk from <bios.h>
|