2.4hayvailon
// 2_4.cpp : Defines the entry point for the console application.
#include "stdafx.h"
#include "PCIXP.h"
#include <conio.h>
#include <dos.h>
#include <iostream.h>
int main(int argc, char* argv[])
{
int PortA,i;
PortA=Get_Addr("PCI_8255");
outportb(PortA+3,0x80);
do
{
int temp=1;
for(i=0;i<8;i++)
{
outportb(PortA,temp);
Sleep(10);
temp=temp*2;
}
outportb(PortA,0x00);
temp=128;
for(i=0;i<8;i++)
{
outportb(PortA+2,temp);
Sleep(10);
temp=temp/2;
}
outportb(PortA+2,0x00);
}while(kbhit()!=1);
return 0;
}
Bạn đang đọc truyện trên: Truyen247.Pro