搜索:INT+1AH
找到约 491 项符合「INT+1AH」的查询结果
结果 491
按分类筛选
- 全部
- 技术资料 (77)
- 单片机编程 (39)
- 其他 (37)
- Java编程 (27)
- 汇编语言 (27)
- 数学计算 (26)
- 单片机开发 (24)
- 源码 (24)
- 数据结构 (23)
- 加密解密 (11)
- 编译器/解释器 (10)
- C/C++语言编程 (8)
- VC书籍 (8)
- 书籍源码 (7)
- 文章/文档 (7)
- 其他书籍 (6)
- 操作系统开发 (5)
- Linux/Unix编程 (5)
- 软件设计/软件工程 (5)
- 数值算法/人工智能 (4)
- 开发工具 (4)
- 压缩解压 (4)
- 嵌入式/单片机编程 (4)
- 微处理器开发 (4)
- 通讯/手机编程 (3)
- 嵌入式综合 (3)
- 教育系统应用 (3)
- 游戏 (3)
- USB编程 (3)
- 中间件编程 (3)
- 软件 (3)
- 笔记 (3)
- 习题答案 (3)
- Linux/uClinux/Unix编程 (2)
- 设计相关 (2)
- DSP编程 (2)
- 仿真技术 (2)
- 汇编编程 (2)
- 技术书籍 (2)
- 模拟电子 (2)
- 电子书籍 (2)
- Internet/网络编程 (2)
- 串口编程 (2)
- *行业应用 (2)
- 人工智能/神经网络 (2)
- 嵌入式Linux (2)
- Java书籍 (2)
- matlab例程 (2)
- 其他嵌入式/单片机内容 (2)
- 邮电通讯系统 (2)
- VIP专区 (2)
- 手册 (2)
- 电源技术 (1)
- 数据库系统 (1)
- PCB图/BOM单/原理图 (1)
- 教材/考试/认证 (1)
- 单片机相关 (1)
- 传感与控制 (1)
- 源码/资料 (1)
- 驱动编程 (1)
- 语音压缩 (1)
- 企业管理 (1)
- Applet (1)
- 网络 (1)
- 多国语言处理 (1)
- 金融证券系统 (1)
- 文件格式 (1)
- CA认证 (1)
- uCOS (1)
- STL (1)
- 酒店行业 (1)
- J2ME (1)
- 交通/航空行业 (1)
- Windows CE (1)
- 系统设计方案 (1)
- JavaScript (1)
- GPS编程 (1)
- Jsp/Servlet (1)
- 书籍 (1)
- 经验 (1)
- 应用设计 (1)
- 其他 (1)
https://www.eeworm.com/dl/644/330217.html
汇编语言
系统时间显示程序 利用BIOS的INT 1AH的2号系统功能调用
系统时间显示程序
利用BIOS的INT 1AH的2号系统功能调用,将计算机系统的时间参数(BCD码)送入寄存器。其中CH 和CL中保存的是小时数和分钟数;DH中保存的是秒钟数,将BCD码表示的时,分,秒转换成ASC I I码并送入屏幕显示。并用INT 21H 的7号功能调用判断输入回车并清屏 ...
https://www.eeworm.com/dl/644/270637.html
汇编语言
class Time { public: Time(int =0,int =0,int =0) void setTime(int,int,int) void printMilita
class Time
{
public:
Time(int =0,int =0,int =0)
void setTime(int,int,int)
void printMilitary()
void printStandard()
private:
int hour
int minute
int second
}
https://www.eeworm.com/dl/534/255740.html
其他
huffman 编码。typedef struct { int weight int flag int parent int lchild int rchild }
huffman 编码。typedef struct
{
int weight
int flag
int parent
int lchild
int rchild
}hnodetype
https://www.eeworm.com/dl/534/456882.html
其他
Usage: void CRC(int*,int*,int,int) Input: XAR0:coded data(InputData)
Usage: void CRC(int*,int*,int,int)
Input: XAR0:coded data(InputData)
XAR1:decoded CRC bits(CrcPoly)
T0: Length of coded data(CodeOutlen)
T1: Length of CRC bits(CrcPolylen) ...
https://www.eeworm.com/dl/644/122416.html
汇编语言
利用1AH,21H 中断调用
利用1AH,21H 中断调用,在屏幕上显示1-20的随机数,并要求能连续输出,直到按下Q键为止
https://www.eeworm.com/dl/644/269934.html
汇编语言
利用1AH,21H 中断调用
利用1AH,21H 中断调用,在屏幕上显示1-20的随机数,并要求能连续输出,直到按下Q键为止
https://www.eeworm.com/dl/686/223786.html
VC书籍
void statistics(int signo) unsigned short cal_chksum(unsigned short *addr,int len) int pack(int
void statistics(int signo)
unsigned short cal_chksum(unsigned short *addr,int len)
int pack(int pack_no)
void send_packet(void)
https://www.eeworm.com/dl/658/393667.html
STL
int getDivisor(int iNum) { int i = 1 int sum = 0 if (0 == iNum) { return 1 } while
int getDivisor(int iNum)
{
int i = 1
int sum = 0
if (0 == iNum)
{
return 1
}
while (i <= iNum / 2)
{
if (0 == iNum % i)
{
sum++
}
i++
}
return (sum+1)
}
https://www.eeworm.com/dl/619/451808.html
Linux/Unix编程
int show_char(int n, const char *name, chtype code) { const int height = 16 int row = 4 + (
int show_char(int n, const char *name, chtype code)
{
const int height = 16
int row = 4 + (n height)
int col = (n / height) * COLS / 2
mvprintw(row, col, " *s : ", COLS/4, name)
addch(code)
return n + 1
}
https://www.eeworm.com/dl/650/376204.html
人工智能/神经网络
河內塔問題 #include<stdio.h> #include<stdlib.h> int fun_a(int) void fun_b(int,int,int,in
河內塔問題
#include<stdio.h>
#include<stdlib.h>
int fun_a(int)
void fun_b(int,int,int,int)
int main(void)
{
int n
int option
printf("題目二:河內塔問題\n")
printf("請輸入要搬移的圓盤數目\n")
scanf("%d",&n)
printf("最少搬移的次數為%d次\n",fun_a(n))
printf("是否顯示 ...