-
反汇编disasm的源代码
反汇编disasm的源代码
反汇编disasm的源代码
反汇编disasm的源代码-anti-disasm compilation of the source code compilation disasm against the source code of the anti-compilation disasm source code
- 2022-01-26 01:54:39下载
- 积分:1
-
The program is to achieve the realization of digital clock, and a corresponding...
该程序是实现数字钟的实现 ,并且有相应的界面。-The program is to achieve the realization of digital clock, and a corresponding interface.
- 2023-03-21 02:45:03下载
- 积分:1
-
调速 高压电机的应用 可提高功率因数和电机的效力
调速 高压电机的应用 可提高功率因数和电机的效力-speed of high-voltage motors can improve power factor and the effectiveness of motor
- 2022-03-23 21:38:52下载
- 积分:1
-
Matlab通信系统的建模仿真
实验五 直接序列扩频系统的建模与仿真...
Matlab通信系统的建模仿真
实验五 直接序列扩频系统的建模与仿真-matlab
- 2022-01-27 13:03:17下载
- 积分:1
-
ic卡sle4442代码
ic卡sle4442代码
-ic card sle4442 code
- 2022-07-14 15:46:30下载
- 积分:1
-
汇编语言报告
在指定的位置,用指定的颜色,显示一个用0结束的字符串。(dh)=行号(取值范围0~24),(dl)=列号(取值范围0~79),(cl)=颜色,ds:si指向字符串的首地址,无返回。在屏幕的8行3列用绿色显示data段中的字符串‘Welcome to masm!’,0(In the specified location, display a string with 0 in the specified color. (dh) = line number (range of values 0-24), (dl) = column number (range of values 0-79), (cl) = color, ds: Si points to the first address of the string, no return. In the 8 row and 3 column of the screen, use green to display the string in the data segment "Welcome to MASM!", 0)
- 2018-11-10 15:06:34下载
- 积分:1
-
DE2_115_i2sound
说明: de2案例实验,本演示使用DE2-115板上的麦克风输入、线路输入和线路输出端口来创建卡拉OK机应用程序。(De2 case study,This demonstration uses the microphone-in, line-in, and line-out ports on the DE2-115 board tocreate a Karaoke Machine application.)
- 2021-04-20 16:48:50下载
- 积分:1
-
Guangxi M achinery No.2,2002 工程设计资料线图数据的MATLAB程序化...
Guangxi M achinery No.2,2002 工程设计资料线图数据的MATLAB程序化-Guangxi M achinery No. 162-163 engineering design information and map data MATLAB program
- 2022-08-18 12:30:03下载
- 积分:1
-
如果要进行农历跟正历的转换 那么这个程序就是用来转换的...
如果要进行农历跟正历的转换 那么这个程序就是用来转换的-to the Lunar calendar is with the conversion Well, this procedure is used for conversion
- 2022-02-02 05:29:38下载
- 积分: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