Categories

the biosdisk function

#include
#include
#include
#include

int main(void)
{

int status;
int command = 19;
int drive = 0;
int head = 0;
int track = 1;
int sector = 1;
int nosectors = 1;
char buffer[512];

clrscr();
status = biosdisk(command,drive,head,track,sector,nosectors,buffer);
if(status == 0)
printf(“Diagnostics.n”);
else
printf(“Unable to run diagnostics.n”);
return 0;

}

No related posts.

Related posts brought to you by Yet Another Related Posts Plugin.

You must be logged in to post a comment.