OS/2 Device Driver Frequently Asked Questions: Difference between revisions
Appearance
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
By [[Tim Snape]] | |||
This article contains a selection of frequently asked questions and is intended to be used by anyone who is writing or planning to write OS/2 device drivers. | This article contains a selection of frequently asked questions and is intended to be used by anyone who is writing or planning to write OS/2 device drivers. | ||
Line 7: | Line 9: | ||
===Is a driver necessary to use IRQs=== | ===Is a driver necessary to use IRQs=== | ||
'''Question''' | |||
I have a requirement to intercept hardware interrupts from an adapter. Do I need to write a device driver. | |||
'''Answer''' | |||
Yes, a device driver is absolutely the only way to interact with hardware generated interrupts. | |||
===Is a driver necessary to access I/O ports=== | ===Is a driver necessary to access I/O ports=== | ||
===Is a driver necessary to access memory on an adapter card=== | ===Is a driver necessary to access memory on an adapter card=== |
Revision as of 16:39, 17 June 2012
By Tim Snape
This article contains a selection of frequently asked questions and is intended to be used by anyone who is writing or planning to write OS/2 device drivers.
Support Categories
Situations when it is (un)necessary to write an OS/2 device driver
Is a driver necessary to use IRQs
Question I have a requirement to intercept hardware interrupts from an adapter. Do I need to write a device driver.
Answer Yes, a device driver is absolutely the only way to interact with hardware generated interrupts.