:i would like to know how to get all the REGISITRY ADD. the one's we use
:in functions like int86(.......)
Standard C does not know anything about registries.
:all the interrupts like for mouse ITS is 0x33 and for Video its 0x10
Standard C does not know anything about interrupts, only about
"signals", and the only signals that Standard C knows about are
ones that would normally interrupt or terminate your program
(e.g., because you attempted to access an address that did not exist.)
Standard C does not know anything about mice or video.
:and the Variables to be passed in the REGS
The closest that standard C has to "REGS" is that there is a storage-
class qualifier "register", which is mostly an optimization hint and
does not give *any* control over which internal register is used.
:if u could help me out
:like how to enable the "modem" usin C????
Standard C does not know anything about modems.
If you were working in Unix and you wanted to enable a modem, you
would just open its device file (specifying that you do not want
to wait for carrier) and then you would use termios functions
or POSIX tcgetattr() and tcsetattr() to set the line to the proper
state, and then you would [often] write commands out the port to tell
the modem to initialize itself. But in many cases in Unix, it is easier
to leave all of the work up to uugetty as that is well parameterized
to be able to deal with different kinds of modems.
If you are working in Windows (as suggested by "REGISTRY") then
I would suggest that you grab the source for any of the many open-source
terminal programs, as they have already dealt with all the issues.