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

📄 wait_ms.c

📁 intel 196nt 例程
💻 C
字号:
/* Wait a number of milliseconds */
/* This loop is determined experimentally, and it might be very inaccurate. */
/* In fact, a change in compiler optimization could change the whole thing. */
void wait_ms( int x )
{
    int			i;
    int			j;

    for ( i = x; i > 0; i-- )
    for ( j = 0; j < 178; j++ )
	;
}

⌨️ 快捷键说明

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