蓝
蓝天
Unregistered / Unconfirmed
GUEST, unregistred user!
下面这段程序是我用 TC 编写的,怎样把它改写为 Delphi 程序?
关键是端口访问和位操作不知道该怎么写。
int AD(int channel,int ida)
{
int BASE=0x280;
outportb(BASE,channel);
while(!(inportb(BASE+5)&0x80));
ida=inportb(BASE+1)|((inportb(BASE+2)&0x0f)<<8);
return(2047-ida);
}
关键是端口访问和位操作不知道该怎么写。
int AD(int channel,int ida)
{
int BASE=0x280;
outportb(BASE,channel);
while(!(inportb(BASE+5)&0x80));
ida=inportb(BASE+1)|((inportb(BASE+2)&0x0f)<<8);
return(2047-ida);
}