⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cmd_complete466_sel.c

📁 基于FAS466的SCSI控制器的启动器模式的C源代码。
💻 C
字号:
#define	GLB extern

#include <stdio.h>
#include <conio.h>
#include <sys\types.h>
#include <sys\timeb.h>
#include <time.h>
#include <stdlib.h>
#include <string.h>
#include <dos.h>

#include "fas466defs.h"
#include "fas466regs.h"
#include "fas466globalvars.h"

void Cmd_Complete466_sel()
{
 	unsigned long Cmd_cmpt_stat = 0;
 	unsigned long CmdCmptLoopCount = 0;
 
	do	{
		Cmd_cmpt_stat = RegRead(SC_Command_Interrupt_Status);
		CmdCmptLoopCount = CmdCmptLoopCount + 1;
	} while ((Cmd_cmpt_stat != 0x10) || (Cmd_cmpt_stat != 0x20) || (Cmd_cmpt_stat != 0x30));

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -