p130-18.asm
来自「汇编的例子利用汇编工具可编译通过不知是否有」· 汇编 代码 · 共 22 行
ASM
22 行
.model small
.data
msg db 16 dup('0'),'$'
.code
.startup
mov ax, 2122h
mov si, offset msg
mov cx, 16
.repeat
shl ax, 1
adc byte ptr [si], 0
inc si
.untilcxz
mov dx, offset msg
mov ah, 9
int 21h
.exit 0
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?