You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#pragma once
|
|
|
|
//pci 卡控制的端口
|
|
struct SPciPort{
|
|
SPciPort()
|
|
{
|
|
num = -1;
|
|
bReverse = false;
|
|
}
|
|
public:
|
|
int num;//端口的编号
|
|
bool bReverse;//是否反转(反转了以后读取和写入都会反过来)
|
|
};
|