2.19same2.18xd:a,f=cacphim
/*
Chuong trinh tao song rang cua co bien do va tan so thay doi duoc.
*/
#include "stdafx.h"
#include <conio.h>
#include <stdio.h>
#include <math.h>
#include <dos.h>
#include <PCIXP.h>
#define pi 3.14143
void delay(int time) // Tu viet ham delay.
{
int i,j;
for(i=0;i<time;i++)
for(j=0;j<1000;j++);
}
void main()
{
int add=Get_Addr("PCI_ADC");
int time,i,n;
char k;
printf("
Chuong trinh tao song rang cua co bien do va tan so thay doi duoc.");
printf("
Nhan phim 't' de tang bien do. Phim 'g' de giam bien do.");
printf("
Nhan phim 'i' de tang tan so. Phim 'd' de giam tan so.");
printf("
Nhan phim 'Esc' de thoat chuong trinh");
time = 150;
n = 2048;
do
{
while(!kbhit())
for(i=0;i<n;i++)
{
outportb(add+2,i);
outportb(add+3,i>>8);
delay(time);
}
k = getch();
if(k=='t'&& n<4090)
n = n+5;
if(k=='g'&& n>5)
n = n-5;
if(k=='d'&& time<290)
time = time+5;
if(k=='i'&& time>10)
time = time-5;
}while(k!=27);
}
// gia tri khoi tao cua time co the la bao nhieu tuy thich (o day, ban dau cho time = 150).
// moi lan bam i/d thi tang giam time 1 luong
Bạn đang đọc truyện trên: AzTruyen.Top