Author: Dale Roberts, Direct I/O and Windows NT
Here are two helpful hints to get you going with GIVEIO. The first
section below mentions the INSTDRV utility that is provided with the
Microsoft DDK. If you do not have access to the DDK, you can use Paula
Tomlinson's program LOADDRV instead. She describes it in her May 1995
article in Windows/DOS Developer's Journal (now Windows Developer's
Journal). You can get the program from their FTP site at:
ftp://ftp.mfi.com/pub/windev/1995/may95.zip.
------------------------------------------------------------------
Device Driver Installation Made Easy
The Microsoft NT Device Driver Kit documentation implies in several
places that there are several steps involved in installing a device driver
and making it accessible to a Win32 application. It explains that you
should edit the registry manually and then reboot the system. But
device drivers are dynamically loadable and unloadable in NT, and the
DDK comes with a very handy utility called INSTDRV that
demonstrates this facility in a very practical manner.
INSTDRV is a console application that will register, load, and start a
kernel mode device driver. It does not require you to edit the registry
manually or reboot the computer. On the command line you simply
give the name of your device driver and the complete path to the .SYS
file (which does not need to be in the system's DRIVERS directory).
After this command is executed, you will find that the driver has been
registered with the system and appears in the Devices applet in the
control panel. If you give the word remove instead of the path, the
driver is removed from the system and taken out of the driver database.
Once the driver is loaded and started, you can use the control panel's
Devices applet to start and stop it, or you can use the net start and net
stop commands (these are much faster) from a console window. When
a kernel mode device is stopped, it is in also unloaded from memory.
The next time you start the device, a fresh copy of the driver is read
from the hard drive, if it has been modified. This makes it very
convenient to develop device drivers, since you can go through the
modify, stop, start cycle repeatedly without ever needing to reboot. If
you need your driver to load at boot time, you can go into the Devices
applet and change its startup mode to boot.
The other component that is needed to make the driver visible to user
mode applications, so they can use CreateFile() calls to access the
driver, is registering the name in the DOS Devices name space. This
can be done, as documented in the DDK, by editing the registry
manually and rebooting. Or, much more simply, the kernel mode
driver can call the IoCreateSymbolicLink() function to register the
name itself. The GIVEIO driver shown in Listing Four uses the later
technique. Once the name is registered, user mode applications can get
a file handle to the device driver by calling CreateFile() with the driver
name as the file parameter, but preceding the driver name with the
special cookie \\.\. The TESTIO application in Listing Five uses this
technique.
------------------------------------------------------------------
Quick Trick: Using DEBUG With Port I/O
Sometimes you just need to do a quick I/O operation to a port. In DOS,
you could use the DEBUG program to accomplish this. In NT, once
you have the GIVEIO device driver up and running, you can once
again use DEBUG for port I/O. If you look at the source code for the
test application, you'll see that all it does is open and close the GIVEIO
device driver. It uses the special cookie \\.\ before the driver name in
order to access it. Without modifying DEBUG, you can have it open
this device driver by simply typing debug \\.\giveio in an NT console
window. You will get an error message complaining that the file
\\.\giveio is not found, but it will give DEBUG I/O access anyway.
Subsequent DOS applications that are run from this console window
will also have I/O access.
WIN32 applications executed from this console window will still cause
exceptions. This is because DEBUG (and any other DOS application)
runs in the context of the VDM (Virtual DOS Machine) process of the
console box, whereas each WIN32 application gets its own process.
The VDM process stays active as long as the console window is open,
but each WIN32 application creates a brand new process with the
IOPM offset initialized to point beyond the end of the TSS.
wqygogo
- 粉丝: 62
- 资源: 31
最新资源
- Vim Masterclass 同步配套练习源码
- windows.html
- java图书馆书库管理系统设计源代码.zip
- java图书管理系统毕业设计源代码.zip
- 汇川PLC编写,设备状态机的实现以及实际案例使用,针对设备的多种状态进行区分,有单独状态和叠加态的实现方式
- java图形图象处理源代码.zip
- java网络通信系统的研究与开发源码.zip
- java文件传输源代码.zip
- java文件压缩与解压缩实践源码.zip
- RationalDMIS64全套教程
- 2_期末考试安排.zip
- C#汇川全系列上位机适配源码 C#上位机读写PLC案例,TCP通信,通讯部分封装成类,没有加密,都是源码,注释齐全,纯源码,此版本支持汇川全系列PLC的ModebusTCP通讯的读写操作 C#上位机
- java五子棋手机网络对战游戏的设计与实现源码.zip
- 基于ssm的独龙族民族特色服务网站的设计与开发源码(java毕业设计完整源码+LW).zip
- 三角体柱状体注意体检测60-YOLO(v5至v11)、COCO、CreateML、Paligemma、TFRecord、VOC数据集合集.rar
- java物业管理系统设计与实现源代码.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
- 1
- 2
- 3
- 4
- 5
前往页