-
Assembly-language
汇编语言程序设计实验报告
1实验要求:
编写程序实现
1 可以录入学生成绩
2 可以按要求进行排序显示
3 可以统计平均成绩
4 可以统计各分数段人数 (Assembly language programming lab reports a test requirement: write a program to achieve a 2 pupils can input requirements can be sorted according to the statistical average results show 3 to 4 you can count the number of scores section)
- 2011-07-01 17:17:34下载
- 积分:1
-
用VB做的一个简单通讯录
用VB做的一个简单通讯录-VB do a simple directory
- 2022-07-07 19:57:40下载
- 积分:1
-
这有一点C的资料,看看,喜欢的下载吧,帮忙
这有一点C的资料,看看,喜欢的下载吧,帮忙-C
- 2023-06-16 05:35:03下载
- 积分:1
-
This is a simple address book program, very suitable for novices to learn from.
这是一个简单的地址簿程序,非常适合新手学习和借鉴。-This is a simple address book program, very suitable for novices to learn from.
- 2022-03-13 07:41:06下载
- 积分:1
-
boot-loader
引导源代码,可以从软盘启动。用汇编软件把代码刷入磁盘第一扇区就可以了(boot code asm)
- 2015-07-04 12:25:56下载
- 积分:1
-
compilation audible procedures and the DOS function, and produce EXE document, t...
汇编发声程序,先在DOS下功能调用,并产生EXE文件,执行可产生-compilation audible procedures and the DOS function, and produce EXE document, the Executive can produce
- 2022-06-14 16:40:13下载
- 积分:1
-
intel 汇编指令详解,是学习汇编语言的必看资料
intel 汇编指令详解,是学习汇编语言的必看资料-Detailed instructions intel compilation is a must-see assembly language learning information
- 2022-02-01 09:24:07下载
- 积分:1
-
using pic16c57 to realize the PIC writer for pic16c57
using pic16c57 to realize the PIC writer for pic16c57-using pic16c57 to realize the PIC writer az r pic16c57
- 2022-08-21 02:57:11下载
- 积分:1
-
武汉理工大学计算机学院 汇编语言课程设计之乐曲程序源代码...
武汉理工大学计算机学院 汇编语言课程设计之乐曲程序源代码-Wuhan Polytechnic University computer science curriculum design language compilation of musical source code
- 2023-04-13 02:50:04下载
- 积分:1
-
2:十进制数的显示
十进制数的显示,就是显示十进制数字 number
DATA SEGMENT
DECIMAL: DW 606D ; 准备输出的十进制数,这里选择我的寝室号 606
DATA ENDS
STACKS SEGMENT STACK
DW 4 DUP(0) ; 开辟四个字的堆栈,初始化为 0
STACKS ENDS
CODES SEGMENT
ASSUME CS:CODES,DS:DATAS,SS:STACKS
START:
MOV AX,DATA
MOV DS,AX ; 初始化 DS
;--------------------------------------------------------------
LEA BX,DECIMAL ; 取出准备输出的十进制数 606 的偏移地址,可以使用 OFFSET 代替
MOV AX,[BX] ; 将数放进 AX
MOV BX,0AH ; 给 BX 初始化为 10(The display of decimal number is the display of decimal number.)
- 2019-06-11 18:29:48下载
- 积分:1