lt501.asm
来自「钱晓杰汇编语言的很多例子 非常经典 我从微辅网上下载的 希望对大家有用」· 汇编 代码 · 共 25 行
ASM
25 行
;LT501.ASM
.model small
.stack
.data
_a sbyte ?
_b sbyte ?
_c sbyte ?
tag byte ?
.code
.startup
mov al,_b
imul al
mov bx,ax
mov al,_a
imul _c
mov cx,4
imul cx
.if sword ptr bx >= ax
mov tag,0
.else
mov tag,1
.endif
.exit 0
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?