.386.model flat,stdcall.stack 4096
ExitProcess PROTO,dwExitCode:DWORD.code
main PROC;计算85-48mov bl,48hmov al,85hsub al,bl ;AL=3Dhdas ;AL =37h(调整后的结果)INVOKE ExitProcess,0
main ENDP
END main
2:DAA_DAS : DAA与DAS将进位标志位设1的情况
.386.model flat,stdcall.stack 4096
ExitProcess PROTO,dwExitCode:DWORD.code
main PROCmov al,56hadd al,92h ;AL=E8hdaa ;AL =48,CF =1 当压缩十进制加法的和数大于99时,进位为1mov al,56hsub al,92h ;AL = C4hdas ;AL =64h ,CF=1;当从小的压缩十进制数减去大的压缩十进制整数,进位为1,也就是表示是负数INVOKE ExitProcess,0
main ENDP
END main
3:QWORD类型用SBB借位减法进行计算
.386.model flat,stdcall.stack 4096
ExitProcess PROTO,dwExitCode:DWORD.data
val1 QWORD 20403004362047A1h
val2 QWORD 055210304A2630B2h
result QWORD 0.code
main PROCmov ecx,8mov esi,0mov edi,0clc
top:mov al,BYTE PTR val1[esi]sbb al,BYTE PTR val2[esi]mov BYTE PTR result[edi],alinc esiinc ediloop topINVOKE ExitProcess,0
main ENDP
END main
4:编写指令将AX符号扩展到EAX,不能使用CWD
.386.model flat,stdcall.stack 4096
ExitProcess PROTO,dwExitCode:DWORD.code
main PROCmov ax,0123hmov bx,axsar ax,15shl eax,16mov ax,bxINVOKE ExitProcess,0
main ENDP
END main
5:不用循环移位指令,用SHR和条件判断指令将AL循环右移一位
.386.model flat,stdcall.stack 4096
ExitProcess PROTO,dwExitCode:DWORD.code
main PROCmov al,11hshr al,1jnc quitor al,80h
quit:INVOKE ExitProcess,0
main ENDP
END main
6:编写一条SHLD指令,把AX寄存器的最高位移入DX的最低位,DX左移一位
.386.model flat,stdcall.stack 4096
ExitProcess PROTO,dwExitCode:DWORD.code
main PROCmov ax,8111hmov dx,1110hshld dx,ax,1INVOKE ExitProcess,0
main ENDP
END main
7:编写指令,把字节数组右移一位
.386.model flat,stdcall.stack 4096
ExitProcess PROTO,dwExitCode:DWORD.data
byteArray BYTE 81h,20h,33h.code
main PROCmov ecx,(LENGTHOF byteArray)-1mov esi,OFFSET byteArray
L1:mov ax,WORD PTR[esi]shr ax,1mov BYTE PTR[esi],alinc esiloop L1shr BYTE PTR[esi],1INVOKE ExitProcess,0
main ENDP
END main
8: 编写指令,把字数组左移一位
.386.model flat,stdcall.stack 4096
ExitProcess PROTO,dwExitCode:DWORD.data
wordArray WORD 810Dh,0C064h,93ABh.code
main PROCmov ecx,(LENGTHOF wordArray )-1mov esi,(OFFSET wordArray )+(2* TYPE WORD)
L1:mov ax,[esi - TYPE WORD]shld WORD PTR[esi],ax,1sub esi,TYPE WORDloop L1shl WORD PTR[esi],1INVOKE ExitProcess,0
main ENDP
END main
include Irvine32.inc.stack 4096
ExitProcess PROTO,dwExitCode:DWORD.code
main PROCmov al,65call showDecimal8INVOKE ExitProcess,0
main ENDPshowDecimal8 PROCaam or ax,3030hmov bx,axshr ax,8call WriteCharmov ax,bxcall WriteCharret
showDecimal8 ENDP
END main
python程序执行时间The execution time of a program is defined as the time spent by the system to execute the task. As we all know any program takes some execution time but we dont know how much. So, dont worry, in this tutorial we will learn it by using the…
string.lengthC#String.Length属性 (C# String.Length property) String.Length property is used to get the total number of characters in the string object (length of the string); it calls with this string and returns the total number of characters. …
从键盘输入一个字符,判断其是不是大写字母,如果是则请输出这个大写字母,如果不是请输出“这不是一个大写字母”的英文信息(要求:能连续输出直到输出“#”结束)。
P155 例4.13
DATA SEGMENT
STR DB 0DH,0…
c语言getc函数C语言中的getc()函数 (getc() function in C) Prototype: 原型: int getc(FILE *filename);Parameters: 参数: FILE *filenameReturn type: int 返回类型: int Use of function: 使用功能: In the file handling…
c语言feof函数C语言中的feof()函数 (feof() function in C) Prototype: 原型: int feof(FILE* filename);Parameters: 参数: FILE *filenameReturn type: int(0 or 1) 返回类型: int(0或1) Use of function: 使用功能: In C l…
Modules used: 使用的模块: For this, we will use the opencv-python module which provides us various functions to work on images. 为此,我们将使用opencv-python模块,该模块为我们提供了处理图像的各种功能。 Download opencv-pytho…