Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to write interrupt functions in visual c++?

Status
Not open for further replies.

littlefish

Programmer
Nov 17, 2000
7
CA
I want to write a low level program to operate the registers and interrupts. What should I do in Visual C++. In Borland c++, there is an int86x function you can invoke, how about in Visual C++? I don't want to use in-line asm.
 
Easy, you can't. You are not allowed to operate interrupts and register in user mode. You need to write a device driver, wich run in kernel mode.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top