搜索:INT 1AH

找到约 491 项符合「INT 1AH」的查询结果

结果 491
按分类筛选
显示更多分类
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号功能调用判断输入回车并清屏 ...
下载 132
·
查看 1160
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 }
下载 62
·
查看 1082
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
下载 49
·
查看 1049
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) ...
下载 85
·
查看 1089
https://www.eeworm.com/dl/644/122416.html 汇编语言

利用1AH,21H 中断调用

利用1AH,21H 中断调用,在屏幕上显示1-20的随机数,并要求能连续输出,直到按下Q键为止 
下载 132
·
查看 1113
https://www.eeworm.com/dl/644/269934.html 汇编语言

利用1AH,21H 中断调用

利用1AH,21H 中断调用,在屏幕上显示1-20的随机数,并要求能连续输出,直到按下Q键为止
下载 186
·
查看 1066
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)
下载 72
·
查看 1198
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) }
下载 31
·
查看 1144
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 }
下载 34
·
查看 1170
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("是否顯示 ...
下载 22
·
查看 1116