阅读:1027回复:5
有谁用过simulate_vm_io最好有源程序 |
|
沙发#
发布于:2002-05-22 11:22
#define DEVREAD(a,b) Simulate_VM_IO(a,b,0)
#define DEVWRITE(a,b,c) Simulate_VM_IO(a,b,c) DEVREAD(pDevInfo->IoBaseDMAAddr+0xa9, BYTE_INPUT); DEVWRITE(pDevInfo->IoBaseAddr1+0x0a, WORD_OUTPUT, 0x0100); 可以了把 |
|
|
板凳#
发布于:2002-05-22 12:54
#define DEVREAD(a,b) Simulate_VM_IO(a,b,0) What is the difference with Direct I/O?? |
|
|
地板#
发布于:2002-05-22 13:28
不用包含什么头文件吗?这个函数需要重载吗?是在onw32deviceiocontrol中用吗?我想往打印机端口一次送一个双字可以用这个函数吗?请指教!
[编辑 - 5/22/02 by amei] |
|
地下室#
发布于:2002-05-22 14:22
vtoolsd的函数,设置好编译环境可以直接使用
可以 |
|
|
5楼#
发布于:2002-05-22 15:16
随便你在哪里用。
VtoolsD封装的函数。 PortID Identifies the port for which input or output is simulated. IOType Type of I/O. It can be one of the following values: Value Meaning BYTE_INPUT Inputs a single byte. BYTE_OUTPUT Outputs a single byte. DWORD_INPUT Inputs a doubleword. DWORD_OUTPUT Outputs a doubleword. WORD_INPUT Inputs a word. WORD_OUTPUT Outputs a word. |
|